/*36. Write a query in SQL to display all those employees whose first name or last name starts with the letter D.*/ SELECT first_name, last_name FROM employees WHERE first_name LIKE 'D%' OR last_name LIKE 'D%';