/*1. Write a query in SQL to display the full name (first and last name), and salary for those employees who earn below 6000. */ SELECT first_name ||' '||last_name AS Full_Name, salary FROM employees WHERE salary < 6000;