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
249 B
SQL

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