SQL Query List the EMPS Who Joined Before a Date

SQL query to list the employees who joined before 1981

SELECT *
FROM EMP
WHERE HIREDATE < (01-JAN-81);

Comments

Popular posts from this blog

Top myths for NULL value in SQL Queries