CREATE OR ALTER PROCEDURE sp_User_Delete @Id INT AS BEGIN SET NOCOUNT ON; DELETE FROM Users WHERE Id = @Id; END