Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: Query help !!!
Here is one way:
select distinct customer_id c1 where exists
(select 'X' from customer_id where customer_id = c1.customer_id and status
= 'F')
and exists
(select 'X' from customer_id where customer_id = c1.customer_id and status
<> 'F')
At 10:05 AM 6/22/01 -0800, you wrote:
>Just to clearfy my previous question (as follow):
>
>if 1 has F and A and B, that what I want.
>
>If 1 has F all the time, that's not what I want.
>If 1 has A, B, C, but never F, that's not what I want
>either.
>
>--- Leslie Lu <leslie_y_lu_at_yahoo.com> wrote:
> > Hi,
> >
> > If I have this:
> > Customer_id Status
> > ---------- -----------
> > 1 F
> > 1 A
> > 1 B
> > 2 F
> > 2 F
> > 3 A
> > 3 B
> >
> > How do I found out a customer who has both F and not
> > F
> > for them. (If he only gets F, or gets other than F,
> > that's fine). In this case, I should get 1. Thank
> > you! I need this badly!
> >
> > __________________________________________________
> > Do You Yahoo!?
> > Get personalized email addresses from Yahoo! Mail
> > http://personal.mail.yahoo.com/
> >
>
>
>__________________________________________________
>Do You Yahoo!?
>Get personalized email addresses from Yahoo! Mail
>http://personal.mail.yahoo.com/
>--
>Please see the official ORACLE-L FAQ: http://www.orafaq.com
>--
>Author: Leslie Lu
> INET: leslie_y_lu_at_yahoo.com
>
>Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051
>San Diego, California -- Public Internet access / Mailing Lists
>--------------------------------------------------------------------
>To REMOVE yourself from this mailing list, send an E-Mail message
>to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in
>the message BODY, include a line containing: UNSUB ORACLE-L
>(or the name of mailing list you want to be removed from). You may
>also send the HELP command for other information (like subscribing).
-- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Regina Harter INET: rharter_at_emc-inc.com Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists -------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).Received on Fri Jun 22 2001 - 12:44:55 CDT