I see that some examples uses select statement with null. When to use:
select null from etc. etc.?
Select null is usually used in combination with EXISTS. eg:- IF EXISTS( select null from ...)
Select null is usually used in combination with EXISTS.
eg:- IF EXISTS( select null from ...)
IF EXISTS( select null from ...)
It sets up the Exists status as true if there are records in the select query. Check this link which has some interesting comments on the usage of select null with Exists: SQL SERVER- IF EXISTS(Select null from table) vs IF EXISTS(Select 1 from table)
2.1m questions
2.1m answers
60 comments
57.0k users