Multiple choice technology databases Which SQL keyword is used to retrieve only unique values? DISTINCTIVE UNIQUE DISTINCT DIFFERENT Reveal answer Fill a bubble to check yourself C Correct answer Explanation DISTINCT is used in SELECT statements to eliminate duplicate rows from the result set, returning only unique values. For example, SELECT DISTINCT city FROM customers returns a list of unique cities. UNIQUE is a constraint, not a query keyword.