Which SQL statement is used to retrieve only unique values from a specific column in a database table?
SELECT * FROM table_name
SELECT NOT NULL column_name FROM table_name
SELECT UNIQUE column_name FROM table_name
SELECT DISTINCT column_name FROM table_name

Information and Communication Technology Exercises are loading ...