Is there an empty statement keyword in T-SQL in Sql Server 2005 or newer? Something like NULL statement in PL/SQL.
You can declare a label to do nothing.
DECLARE @value INT IF @value IS NULL BEGIN no_op1: END
2.1m questions
2.1m answers
60 comments
57.0k users