Apr 26, 2005 #1 russland Programmer Jan 9, 2003 315 CH hi, how could i do a query of a query. respektively a select from a select statement?
Apr 26, 2005 1 #2 PHV MIS Nov 8, 2002 53,708 FR 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 Upvote 0 Downvote
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
Apr 26, 2005 Thread starter #3 russland Programmer Jan 9, 2003 315 CH 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. Upvote 0 Downvote
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.
Apr 26, 2005 Thread starter #4 russland Programmer Jan 9, 2003 315 CH this s*** is just funtastic! workes great. I didn't know you could even encapsulate within the joins. great. thanks a lot. Upvote 0 Downvote
this s*** is just funtastic! workes great. I didn't know you could even encapsulate within the joins. great. thanks a lot.