Explore practical .NET, C#, and Azure development tips, tutorials, and updates. Sharpen your coding skills with real-world examples and weekly reflections.
DECLARE @EMP_ID BIGINT=NULL
IF(@EMP_ID = NULL)
BEGIN
PRINT 'PLEASE ENTER VALID EMPLOYEE ID'
END
ELSE
PRINT 'VALID EMPLOYEE ID'
Ans : VALID EMPLOYEE ID