I am working on a project and I can't get my WHERE statement to work. Here is the code I'm using:
SELECT *
FROM Employee
WHERE EMP_HIREDATE > 1990-01-01
AND EMP_DOB > 1960-01-01;
I am not getting an error, but when I run the query it returns entries out of these ranges.
Any thoughts??
SELECT *
FROM Employee
WHERE EMP_HIREDATE > 1990-01-01
AND EMP_DOB > 1960-01-01;
I am not getting an error, but when I run the query it returns entries out of these ranges.
Any thoughts??