/*3. Write a query in SQL to display the first and last name, and department number for all employees whose last name is “McEwen”. */ SELECT first_name, last_name, department_id FROM employees WHERE last_name = 'McEwen';