Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 General SQL Server Forums
 New to SQL Server Programming
 Sub-queries in the FROM clause

Author  Topic 

nevzab
Starting Member

34 Posts

Posted - 2013-06-21 : 18:23:48
I am trying to understand when sub-queries would be used in the FROM clause of a SELECT statement. Are there circumstances under which you have to use one? I would appreciate any guidance on this subject. Any examples would be a bonus.

Cheers,

Nev.

TG
Master Smack Fu Yak Hacker

6065 Posts

Posted - 2013-06-21 : 23:31:25
There are many circumstances under which you would use a sub-query in a FROM clause. And a sub-query can take numerous forms which is evident when you look at the t-sql reference for FROM. One typical usage is called a "derived table". Those can be used to greatly reduce the number of rows considered before joining to another table. Another reason could be that you want to aggregate some values to narrow down to a group of rows to correlate to another table.

As for examples probably a good thing to do is look through a bunch of sqlteam.com posts. I bet you won't have to look far before seeing some examples.



Be One with the Optimizer
TG
Go to Top of Page

nevzab
Starting Member

34 Posts

Posted - 2013-06-22 : 06:02:50
Thanks for your reply TG. I hadn't go found much info on this subject until you mentioned derived tables, a term I had forgotten about. Now I have read a number of articles on this and related topics, such the difference between correlated and non-correlated sub-queries.

Cheers!

Nev.
Go to Top of Page
   

- Advertisement -