I see that some examples uses select statement with null. I mean when to use:
select null from etc. etc.?
|
|
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) |
|||||
|
|
Linq to SQL do this sort of thing :
It prevents to bring data when I don't want data, but just the exist status. |
|||||
|