I found the issue, mine is sql server 2014
I have the below stored procedure. I want to pass multiple id's. How can I change the stored procedure to accept multiple id's
ALTER PROCEDURE [dbo].[GetProductsById]
@id int
AS BEGIN
SET NOCOUNT ON;
SELECT * From Products
WHERE ProductId IN (@id)
END