Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How could I do the opposite of:

example

In other words select all the people whose last name is NOT Hansen or Pettersen.

share|improve this question
3  
(Keep reading the tutorial/reference that image came from? ^^) – user166390 Jun 2 '11 at 20:13

5 Answers

up vote 16 down vote accepted
WHERE lastname NOT IN ('Hansen', 'Pettersen')

see the section "The IN and NOT IN operators" in SQL As Understood By SQLite

share|improve this answer
4  
Conrad wins the race! – JNK Jun 2 '11 at 19:47
2  
Could it really be that simple? Yes it could! – APC Jun 2 '11 at 19:47
@JNK FGITW for the win – Conrad Frix Jun 2 '11 at 19:47
4  
I'm both saddened and amused at how much rep gets distributed on these ridiculous questions (I've taken my share too). I think if people weren't too lazy to read search results half the people with 5k+ rep would be under 1000. – JNK Jun 2 '11 at 19:57
SELECT * FROM Persons WHERE LastName NOT IN ('Hansen','Pettersen')
share|improve this answer

You can negate the IN with NOT:

SELECT * FROM Persons
WHERE LastName NOT IN ('hansen', 'Pettersen')
share|improve this answer

Simply NOT IN:

SELECT * FROM Persons
Where LastName NOT IN (...)
share|improve this answer

Negate your condition with NOT.

select * from persons
where NOT (LastName IN ('Hansen','Pettersen'));
share|improve this answer
That's kind of a bad coding style. – the_drow Jun 2 '11 at 19:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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