Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

make a quey of a query 1

Status
Not open for further replies.

russland

Programmer
Jan 9, 2003
315
CH
hi,

how could i do a query of a query. respektively a select from a select statement?
 
Something like this ?
SELECT * FROM (
SELECT ... FROM ... WHERE ...
) A INNER JOIN (
SELECT ... FROM ... WHERE ...
) B ON A.SomeCol = B.AnotherCol

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ222-2244
 
hm.... i didn't know something like that is possible?! i check and give you the desevered star if fine. however, thanks for your reply.

cheers for now.
 
this s*** is just funtastic! workes great. I didn't know you could even encapsulate within the joins. great. thanks a lot.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top