vote up 2 vote down star

I have a table containing a unique ID field. Another field (REF) contains a reference to another dataset's ID field. Now I have to select all datasets where REF points to a dataset that doesn't exist.

SELECT * FROM table WHERE ("no dataset with ID=REF exists")

How can I do this?

flag

8 Answers

vote up 18 vote down check

3 ways

SELECT * FROM YourTable y WHERE NOT EXISTS 
     (SELECT * FROM OtherTable o WHERE y.Ref = o.Ref)

SELECT * FROM YourTable WHERE Ref NOT IN 
     (SELECT Ref FROM OtherTable WHERE Ref IS NOT NULL)

SELECT y.* FROM YourTable y 
LEFT OUTER JOIN  OtherTable o ON y.Ref = o.Ref
WHERE o.Ref IS NULL

See also Five ways to return all rows from one table which are not in another table

link|flag
vote up 5 vote down

Try this:

SELECT * FROM TABLE WHERE NOT EXISTS 
     (SELECT * FROM OtherTable WHERE TABLE.Ref = OtherTable.ID)
link|flag
Table.ref = othertable.id – Jimmy Apr 17 at 15:47
vote up 5 vote down

I think this should work

SELECT * FROM table WHERE id NOT IN (SELECT ref_id FROM ref_table)

or with JOIN

SELECT table.* 
FROM table LEFT JOIN ref_table ON table.id = ref_table.ref_id
WHERE ref_table.ref_id IS NULL
link|flag
won't work if you have NULL values – SQLMenace Apr 17 at 15:50
vote up 3 vote down
SELECT 
 table1.* 
FROM 
 table1
 LEFT JOIN table2 ON table1.id = table2.ref
WHERE 
 table2.ref IS NULL
link|flag
SELECT Table1.*.. – ck Apr 17 at 15:49
+1, JOINs are preferable to sub-selects most of the time. – Matt Grande Apr 17 at 15:53
vote up 2 vote down

You can do a subquery like:

select * from table where somefield not in (select otherfield from sometable where ID=REF)
link|flag
you can't do somefield in (select *... as one field cannot evaluate to many – ck Apr 17 at 15:48
vote up 0 vote down
SELECT * 
FROM table 
WHERE ((SELECT COUNT(*) FROM table2 WHERE table2.id = table.ref) = 0)
link|flag
hahaha! -2 points, I'm glad at least the code works even if it's not the neatest, otherwise who knows how many points less! – antonioh Apr 17 at 16:03
vote up 0 vote down

Something like that :

SELECT * FROM table WHERE ID NOT IN(SELECT REF FROM Table2 )
link|flag
vote up -1 vote down

yo dawg i herd u liek selects so we put a select in ur select so you can query while you query.

link|flag
5  
I heard you like comments in your selects, so I put a comment in your select so you select your comments while comment on your selects – Brian Apr 17 at 15:50
1  
probably shouldn't be here, but it's really funny IMO. – Jeff Atwood Apr 26 at 10:14

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.