Write an SQL query to retrieve distinct values from the "department" column of the "employees" table.
SELECT DISTINCT department FROM employees;
SELECT UNIQUE department FROM employees;
SELECT department FROM employees DISTINCT;
SELECT department DISTINCT FROM employees;
This question is part of this quiz :
SQL Query-Based Questions Quiz