mirror of
https://github.com/bitwarden/server.git
synced 2024-11-24 12:35:25 +01:00
19 lines
422 B
MySQL
19 lines
422 B
MySQL
|
CREATE OR ALTER PROCEDURE [dbo].[Transaction_ReadByOrganizationId]
|
||
|
@OrganizationId UNIQUEIDENTIFIER,
|
||
|
@Limit INT,
|
||
|
@StartAfter DATETIME2 = NULL
|
||
|
AS
|
||
|
BEGIN
|
||
|
SET NOCOUNT ON
|
||
|
|
||
|
SELECT
|
||
|
TOP (@Limit) *
|
||
|
FROM
|
||
|
[dbo].[TransactionView]
|
||
|
WHERE
|
||
|
[OrganizationId] = @OrganizationId
|
||
|
AND (@StartAfter IS NULL OR [CreationDate] < @StartAfter)
|
||
|
ORDER BY
|
||
|
[CreationDate] DESC
|
||
|
END
|