Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: Need help with a complicate sql select request

Re: Need help with a complicate sql select request

From: 6266488 <6266488_at_gmail.com>
Date: 8 Jul 2006 07:39:23 -0700
Message-ID: <1152369563.084097.311770@m79g2000cwm.googlegroups.com>


from wht i think.. your need is tht it should list all the users depending on the mega group name you giv.. so i think this should work..
SELECT b.user
FROM b
WHERE b.grp IN
(
SELECT a.grp
FROM a
WHERE a.mega_grp = 'mg1'
); Received on Sat Jul 08 2006 - 09:39:23 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US