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