-- Select every employee in the sales department SELECT first_name, last_name FROM employees WHERE department = 'Sales'; SELECT * FROM employees; -- this returns all columns and rows
Click Run to execute this code.