vote up 2 vote down star

If I have a list of items, say

apples
pairs
pomegranites

and I want to identify any that don't exist in the 'fruit' column in an SQL DB table.

  • Fast performance is the main concern.
  • Needs to be portable over different SQL implementations.
  • The input list could contain an arbitrary number of entries.

I can think of a few ways to do it, thought I'd throw it out there and see what you folks think.

flag

64% accept rate
Oh, and I don't care what order the items are in the table, it's just whether each item exists. – Brabster Jan 13 at 20:19

3 Answers

vote up 0 vote down
if exists(select top 1 name from fruit where name in ('apples', 'pairs', 'pomegranates'))
  PRINT 'one exists'
link|flag
That only says a fruit exists, not the list of fruits that DON'T exist. – Robert C. Barth Jan 13 at 20:25
I don't see where he says he needs the rest of the fruits in the table, just whether or not one of this does exist. – scottm Jan 13 at 20:28
Sorry, I need to identify the fruits that are in my list but don't exist in the table. – Brabster Jan 13 at 20:31
vote up 1 vote down

Make the search list into a string that looks like '|fruit1|fruit2|...fruitn|' and make your where clause:

where
  @FruitListString not like '%|' + fruit + '|%'

Or, parse the aforementioned string into a temp table or table variable and do where not in (select fruit from temptable). Depending on the number of items you're searching for and the number of items being searched, this method could be faster.

link|flag
+1 for the innovative Joel Spolsky solution! stackoverflow.com/questions/337704/… – Bill Karwin Jan 13 at 20:38
vote up 6 vote down

Since the list of fruits you are selecting from can be arbitrarily long, I would suggest the following:

create table FruitList (FruitName char(30))
insert into FruitList values ('apples'), ('pears'), ('oranges')

select * from FruitList left outer join AllFruits on AllFruits.fruit = FruitList.FruitName
where AllFruits.fruit is null

A left outer join should be much faster than "not in" or other kinds of queries.

link|flag
+1 but FWIW you need each tuple parenthesized separately: VALUES ('apples'), ('pears'), ('oranges'), ... – Bill Karwin Jan 13 at 20:34
Thanks @Bill. I don't use VALUES much, should have checked my reference first. Fixed. – Kluge Jan 13 at 20:36
Probably the best option. if you don't want to create a table, you can create a table variable instead to do the same thing and it will be destroyed when your query ends. – scottm Jan 13 at 20:42
Sneaky work around for inserting a bunch of test records when the values clause only lets you do one at a time insert mytable(field) select 'apples' union all select 'Pears' union all select 'oranges' – HLGEM Jan 13 at 21:05

Your Answer

Get an OpenID
or

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