Results 1 to 6 of 6

Thread: Append 2 Selects? [resolved]

  1. #1

    Thread Starter
    Frenzied Member blindlizard's Avatar
    Join Date
    Feb 2001
    Location
    Austin, TX - United States of America
    Posts
    1,141

    Append 2 Selects? [resolved]

    I need to do something like this in MS SQL Server:
    Code:
    select startdate from classes 
    append 
    select startdate from events
    which should return the startdates from both tables in one recordset, but does not. I only get the startdates from the classes table, not from the events table.

    I think I use to do this in my old Oracle days, does SQL Server have something like it?
    Last edited by blindlizard; Dec 9th, 2003 at 11:50 PM.
    I drink to make other people more interesting!
    [vbcode]On Error GoTo Bar[/vbcode]
    http://www.monsterlizard.com

  2. #2
    Hyperactive Member
    Join Date
    Nov 1999
    Location
    Leavenworth KS USA
    Posts
    482
    Code:
    SELECT startdate FROM classes 
    UNION   -- use UNION ALL if you want duplicate values listed
    SELECT startdate FROM events
    HTH

  3. #3

    Thread Starter
    Frenzied Member blindlizard's Avatar
    Join Date
    Feb 2001
    Location
    Austin, TX - United States of America
    Posts
    1,141
    Thanks, that is it. I need to find a list of keywords and their uses.

    So, if I use this then I won't have any duplicates in the recordset?
    Code:
    SELECT distinct startdate FROM classes 
    UNION  ALL
    SELECT distinct startdate FROM events
    I drink to make other people more interesting!
    [vbcode]On Error GoTo Bar[/vbcode]
    http://www.monsterlizard.com

  4. #4
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170
    When using UNION, distinct values are automatically selected.

  5. #5

    Thread Starter
    Frenzied Member blindlizard's Avatar
    Join Date
    Feb 2001
    Location
    Austin, TX - United States of America
    Posts
    1,141
    cool, thanks guys
    I drink to make other people more interesting!
    [vbcode]On Error GoTo Bar[/vbcode]
    http://www.monsterlizard.com

  6. #6
    Hyperactive Member sw_is_great's Avatar
    Join Date
    Nov 2003
    Posts
    330
    UNION
    UNION ALL
    Regards

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width