You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

5 lines
206 B
SQL

/*15. Write a query in SQL to display all the information from Employees table for
those employees who was hired before June 21st, 1987.*/
SELECT *
FROM employees
WHERE hire_date < '1987-06-21';