Is the WHERE table NOT "$ value"?

I am trying to select everything from the database except one.

Using the syntax in the header doesn't work, is this their other way?

+4
source share
2 answers
WHERE column <> '$value'
+7
source

Try the following:

WHERE column != '$value'

IS NOT used with null

eg:

WHERE column IS NOT NULL
+4
source

All Articles