I have a database table: Employee with fields id, name, sex, age.
I run the following queries, and they gave different results. So what's the difference between them?
SELECT name, sex
FROM Employee
WHERE age = null
or
SELECT name, sex
FROM Employee
WHERE age is null