/*4. Write a query in SQL to display all the information for all employees without any department number. */ SELECT * FROM employees WHERE department_id IS NULL;