Welcome to the dBforums forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions, articles and access our other FREE features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload your own photos and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact support.

If you prefer not to see double-underlined words and corresponding ads, place your cursor
here for ContentLink opt out.

Go Back  dBforums > Data Access, Manipulation & Batch Languages > ANSI SQL > Selecting exclusive items (In one table, but not in another)

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 06-10-04, 15:12
Oberiko Oberiko is offline
Registered User
 
Join Date: May 2004
Posts: 7
Selecting exclusive items (In one table, but not in another)

Howdy.

Quick question: How do I select data that is present in one table, but not in another?

simple example:

I've got a list of all my people in my phonebook. Another table has a list of the people who I owe money to.

If I want to do a query on people I can feel free to visit (IE, those in the phonebook, but who I don't owe money too), how would I do this?

Edit: I probably should mention that I'm using PostgreSQL.

Last edited by Oberiko : 06-10-04 at 15:21.
Reply With Quote
  #2 (permalink)  
Old 06-10-04, 15:47
Pat Phelan Pat Phelan is offline
Resident Curmudgeon
 
Join Date: Feb 2004
Location: In front of the computer
Posts: 9,573
Use a left join, and test for NULL values in the foreign key of the table of people you owe money to.

-PatP
Reply With Quote
  #3 (permalink)  
Old 06-10-04, 16:03
Oberiko Oberiko is offline
Registered User
 
Join Date: May 2004
Posts: 7
Thanks.

Just solved it with a NOT IN command.

<-- Newb. :/
Reply With Quote
  #4 (permalink)  
Old 06-10-04, 16:48
Pat Phelan Pat Phelan is offline
Resident Curmudgeon
 
Join Date: Feb 2004
Location: In front of the computer
Posts: 9,573
Just FYI, but NOT IN is "expensive" compared to NOT EXISTS. The LEFT OUTER JOIN solution is normally the "cheapest" solution.

-PatP
Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On