CREATE PROCEDURE [dbo].[Products_Delete] ( @productID int ) AS BEGIN SET NOCOUNT ON; DELETE FROM [dbo].[Products] WHERE [ProductID] = @productID END