/*2. Write a query in SQL to display the first and last_name, department number and salary for those employees who earn more than 8000. */ SELECT first_name,last_name, department_id, salary FROM employees WHERE salary > 8000;