Multiple choice technology databases Which SQL statement is used to return only different values? SELECT DIFFERENT SELECT DISTINCT SELECT UNIQUE All of the above Reveal answer Fill a bubble to check yourself B Correct answer Explanation SELECT DISTINCT eliminates duplicate values. DIFFERENT is not a SQL keyword, and UNIQUE (though valid in some databases) is not standard SQL.