× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



How about this:

      With  SET1(cust1) as
            (       Select distinct cust# from transfile
                          where item# = '12a'
            ),
            SET2(cust2) as
            (       Select distinct cust# from transfile
                          where item# = '13a'
            )
      Select distinct cust1 from set1 exception join set2 on cust1 = cust2


    Alexei Pytel





                      "Walden H.
                      Leverich"                 To:       
"'midrange-l@midrange.com'"
                      <WaldenL@TechSoftI         <midrange-l@midrange.com>
                      nc.com>                   cc:
                      Sent by:                  Subject:  RE: Sql question
                      midrange-l-admin@m
                      idrange.com


                      05/17/2002 12:41
                      PM
                      Please respond to
                      midrange-l





Actually, I think 469 would be the only row returned, but try:

Select cust# from transfile
             where cust# in
                         (select cust# from transfile where item# = '12a')
             and cust# NOT in
                         (select cust# from transfile where item# = '13a')

-Walden

------------
Walden H Leverich III
President
Tech Software
(516) 627-3800 x11
(208) 692-3308 eFax
WaldenL@TechSoftInc.com
http://www.TechSoftInc.com

Quiquid latine dictum sit altum viditur.
(Whatever is said in Latin seems profound.)



-----Original Message-----
From: Smith, Mike [mailto:Mike_Smith@RGCResources.com]
Sent: Friday, May 17, 2002 13:32
To: 'midrange_L@midrange.com'
Subject: Sql question


This message is in MIME format. Since your mail reader does not understand
this format, some or all of this message may not be legible.
--
[ Picked text/plain from multipart/alternative ]
I have a file that has data like this

 <file:Transfile> file:Transfile
Cust#           Item#
123             '12a'
123             '13a'
469             '12a'
550             '13a'

I want to be able to select customers who have ordered item '12a' but not
'13a'

So I would end up with

123 as the only record returned out of this data set.

Can I do this with a SQL statement?

Thanks

Mike

_______________________________________________
This is the Midrange Systems Technical Discussion (MIDRANGE-L) mailing list
To post a message email: MIDRANGE-L@midrange.com To subscribe, unsubscribe,
or change list options,
visit: http://lists.midrange.com/cgi-bin/listinfo/midrange-l
or email: MIDRANGE-L-request@midrange.com
Before posting, please take a moment to review the archives
at http://archive.midrange.com/midrange-l.
_______________________________________________
This is the Midrange Systems Technical Discussion (MIDRANGE-L) mailing list
To post a message email: MIDRANGE-L@midrange.com
To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/cgi-bin/listinfo/midrange-l
or email: MIDRANGE-L-request@midrange.com
Before posting, please take a moment to review the archives
at http://archive.midrange.com/midrange-l.








As an Amazon Associate we earn from qualifying purchases.

This thread ...


Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.