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

/*10. Write a query in SQL to display the first and last name, and salary for those employees whose first name is ending with
the letter m.*/
SELECT first_name, last_name, salary
FROM employees
WHERE first_name LIKE '%m';