Question
How to restrict NULL as parameter to stored procedure SQL Server?
Is it possible to create a stored procedure as
CREATE PROCEDURE Dummy
@ID INT NOT NULL
AS
BEGIN
END
Why is it not possible to do something like this?
45 69860
45