students table:
id name
0 NULL
1 John
Query:
SELECT * from students WHERE name != "John";
Expected output:
0 NULL
With my test, the result is empty, how i can solve this?
SELECT * from students WHERE name != "John" OR name == NULL;