Forum Moderators: coopster
SELECT *
FROM
`names`
WHERE
`first` = 'Bob' OR
`first` = 'Tom' OR
`first` = 'Jim'
but when I switch it around and try to pull up every EXCEPT those three names using the!=/NOT LIKE commands, it does not work
SELECT *
FROM
`names`
WHERE
`first`!= 'Bob' OR
`first`!= 'Tom' OR
`first`!= 'Jim'
What is the correct query to use?