How do you represent the sub queries in SELECT and WHERE clauses?
|
|
|
|
|
|
|
You've gotten some good anwsers, but try to see if you can change your logic such that the sub-query takes place in the from clause, so that it is only run once instead of once for each row returned by the main query. Sub-queries really suck the performance out of a system. |
||||
|
|
|
You can use subqueries in SELECT and WHERE clauses like this:
|
||
|
|
|
|
Statements that include subqueries usually take one of these formats:
Subquery Fundamentals (SQL Server 2008 Books Online, January 2009) |
|||
|
