Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mikependon/7a796cf732d04f02337c299ae3997c45 to your computer and use it in GitHub Desktop.
Save mikependon/7a796cf732d04f02337c299ae3997c45 to your computer and use it in GitHub Desktop.
Stored Procedure (GetCustomerOrders)
CREATE PROCEDURE [dbo].[sp_get_customer_orders]
(
@CustomerId INT
)
AS
BEGIN
SELECT *
FROM [dbo].[Orders]
WHERE (CustomerId = @CustomerId)
ORDER BY OrderDateUtc ASC;
END
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment