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.

4 lines
164 B
SQL

/*38. Write a query in SQL to display those employees who joined after 7th September, 1987.*/
SELECT *
FROM employees
WHERE hire_date > '1987-09-07';