The core infrastructure backend (API, database, Docker, etc).
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

17 lines
356 B

-- Add SubscriptionDiscount_List stored procedure for pagination
CREATE OR ALTER PROCEDURE [dbo].[SubscriptionDiscount_List]
@Skip INT = 0,
@Take INT = 25
AS
BEGIN
SET NOCOUNT ON
SELECT
*
FROM
[dbo].[SubscriptionDiscountView]
ORDER BY [CreationDate] DESC
OFFSET @Skip ROWS
FETCH NEXT @Take ROWS ONLY
END
GO