Assigning a variable inside an IF EXISTS clause Assigning a variable inside an IF EXISTS clause sql sql

Assigning a variable inside an IF EXISTS clause


In my installation of SQL Server 2008 R2, it simply doesn't compile. The parser complains about there being incorrect syntax near =.

I believe it must have something to do with mixing value assignment and data retrieval in a single SELECT statement, which is not allowed in SQL Server: you can have either one or the other. Since, when you assign values, the row set is not returned but the EXISTS predicate expects it to be, the assignment cannot be allowed in that context, so, to avoid confusion, perhaps, the limitation must have been imposed explicitly.

Your workaround, which you are talking about in a comment, is a decent one, but might not work well somewhere in the middle of a batch when the variable has already got a value before the assignment. So I would probably use this workaround instead:

SELECT @myvar = ...IF @@ROWCOUNT > 0 ...

As per MSDN, the @@ROWCOUNT system function returns the number of rows read by the query.


Rather than doing IF EXISTS, you could just do

DECLARE @myvar  intSELECT @myvar = theTable.varIWant.....;IF @myvar IS NULLBEGIN...


It will not work just because in EXISTS construction sql server just validates if any row exists and it does not matter the select-columns or assignment section.This is done for optimizing the performance.