CTE (Common Table Expressions
   From:        Robert Rogerson <rogersonra@xxxxxxxxx>
   To:        "RPG programming on the IBM i / System i"
   <rpg400-l@xxxxxxxxxxxx>
   Date:        06/14/2010 12:27 PM
   Subject:        Re: SQL looking for differences in rows in same table
   Sent by:        rpg400-l-bounces@xxxxxxxxxxxx
   --------------------------------------------------------------------------
   I've not iced a number of posts using the WITH statement.  I am not
   familiar
   with this and tried to find an overview in the SQL manuals but could not
   find any reference.
   Can someone tell me what I should be searching for so I can look it up
   myself.
   Thanks,
   Rob
   On Mon, Jun 14, 2010 at 1:40 PM, Charles Wilt
   <charles.wilt@xxxxxxxxx>wrote:
   > with itemVendor as (select distinct item, vendor from mytbl)
   >  , dupItems as (select item, count(*) from itemVendor
   >                       group by item
   >                       having count(*) > 1)
   > select * from mytbl
   > where item in (select item from dupItems)
   >
   > HTH,
   > Charles
   >
   >
   > On Mon, Jun 14, 2010 at 1:24 PM, Dave Petrosky
   <Dave.Petrosky@xxxxxxxxxx>
   > wrote:
   > > Sorry I was not clearer. I want to be able to distinguish between rows
   > > where the Item is the same, but the Vendor is different, and I want to
   > > see a list of all the records in which this is true. From my example
   > > table, I would like to see all of the 256 rows (since amongst them,
   the
   > > vendors are all not the same) but would not like to see any of the 303
   > > rows. And I want to see all four(4) 256 rows, even though two (2) of
   > > them share the same vendor.
   > >
   > >
   > >> I have a table where my data would be like
   > >>
   > >> Company Warehouse Item    Vendor
   > >>   1        1        256    25
   > >>   2        1        256    *blanks
   > >>   3        1        256    24
   > >>   4        1        256    24
   > >>   1        1        303    25
   > >>   2        1        303    25
   > >>
   > >> What I am looking to do is generate a list which will show all of the
   > >> Item 256 rows (since these rows are not all the same) but not show
   any
   > >
   > >> of the Item 303 rows.
   > >
   > > David M. Petrosky
   > > Programmer/Analyst
   > > Maines Paper & Food Service, Inc.
   > > 101 Broome Corporate Parkway
   > > Conklin, NY  13748
   > > (office) 607-251-7378
   > > dave.petrosky@xxxxxxxxxx
   > > [1]www.maines.net
   > >
   > >
   > >
   > >
   > >
   > > --
   > > This is the RPG programming on the IBM i / System i (RPG400-L) mailing
   > list
   > > To post a message email: RPG400-L@xxxxxxxxxxxx
   > > To subscribe, unsubscribe, or change list options,
   > > visit: [2]
http://lists.midrange.com/mailman/listinfo/rpg400-l
   > > or email: RPG400-L-request@xxxxxxxxxxxx
   > > Before posting, please take a moment to review the archives
   > > at [3]
http://archive.midrange.com/rpg400-l.
   > >
   > >
   > --
   > This is the RPG programming on the IBM i / System i (RPG400-L) mailing
   list
   > To post a message email: RPG400-L@xxxxxxxxxxxx
   > To subscribe, unsubscribe, or change list options,
   > visit: [4]
http://lists.midrange.com/mailman/listinfo/rpg400-l
   > or email: RPG400-L-request@xxxxxxxxxxxx
   > Before posting, please take a moment to review the archives
   > at [5]
http://archive.midrange.com/rpg400-l.
   >
   >
   --
   This is the RPG programming on the IBM i / System i (RPG400-L) mailing
   list
   To post a message email: RPG400-L@xxxxxxxxxxxx
   To subscribe, unsubscribe, or change list options,
   visit: [6]
http://lists.midrange.com/mailman/listinfo/rpg400-l
   or email: RPG400-L-request@xxxxxxxxxxxx
   Before posting, please take a moment to review the archives
   at [7]
http://archive.midrange.com/rpg400-l.
   This email and any files transmitted with it are confidential and intended
   solely for the use of the individual or entity to whom they are addressed.
   Unless you are the addressee (or authorized to receive for the addressee),
   you may not use, copy or disclose to anyone this email or any information
   contained in this email. If you have received this email in error, please
   advise the sender by replying to this email, and delete this email
   immediately. Please note that any views or opinions presented in this
   email are solely those of the author and do not necessarily represent
   those of Western Dental Services, Inc. Finally, the recipient should check
   this email and any attachments for the presence of viruses. Western Dental
   Services, Inc. accepts no liability for any damage caused by any virus
   transmitted by this email.
References
   Visible links
   1. file:///tmp/www.maines.net
   2. 
http://lists.midrange.com/mailman/listinfo/rpg400-l
   3. 
http://archive.midrange.com/rpg400-l
   4. 
http://lists.midrange.com/mailman/listinfo/rpg400-l
   5. 
http://archive.midrange.com/rpg400-l
   6. 
http://lists.midrange.com/mailman/listinfo/rpg400-l
   7. 
http://archive.midrange.com/rpg400-l
As an Amazon Associate we earn from qualifying purchases.