SQLite Forum

Not Equal Operator
Login
I've created an account.

> Also, comparing NULL to anything results in NULL, which is NOT TRUE. Check out the IS operator.

Do you mean NULL != 'Any Value' equals false ?

In that case I have to add (testColumn != 'testValue' OR testColumn IS NULL)

Himm, it works now. Isn't this weird ?