Is there a cleaner way to perform this query in MySQL?
SELECT * FROM table WHERE id != 1 AND id != 2 AND id != 7
like:
SELECT * FROM table WHERE id != (1,2,7)
SELECT * FROM table WHERE id NOT IN (1,2,7)
Sign up using Google
Sign up using Facebook
Sign up using Stack Exchange
By posting your answer, you agree to the privacy policy and terms of service.
tagged
asked
3 years ago
viewed
1745 times
active