Skip to content

Instantly share code, notes, and snippets.

@jeremylong
Created June 11, 2013 00:08
Show Gist options
  • Save jeremylong/5753568 to your computer and use it in GitHub Desktop.
Save jeremylong/5753568 to your computer and use it in GitHub Desktop.
CREATE TYPE [dbo].[PrimaryKeyINT] AS TABLE(
[id] [int]
)
GO
CREATE PROCEDURE [dbo].[usp_GetDetails]
(
@inClause PrimaryKeyINT READONLY
)
AS
BEGIN
SELECT InventoryID, Product, [Date], Cost
FROM InventoryHistory
WHERE InventoryID IN (SELECT * FROM @inClause)
END
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment