How to do nothing in SQL Server

Viewed 62632

Possible Duplicate:
Empty statement in T-SQL

How can I get this to compile in SQL Server?

IF @value IS NULL
BEGIN
  -- I don't want to do anything here
END
6 Answers
Related