/*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';