Which SQL statement is used to return only different values?
-
SELECT DIFFERENT
-
SELECT UNIQUE
-
SELECT DISTINCT
-
SELECT EXACT
C
Correct answer
Explanation
The DISTINCT keyword in SQL eliminates duplicate rows from the result set, returning only unique (different) values. The correct syntax is 'SELECT DISTINCT column_name' as shown in option C. Options A, B, and D use keywords that don't exist in standard SQL for this purpose.