Multiple choice sql Which SQL statement is used to return only different values? SELECT UNIQUE SELECT INDENTITY SELECT DIFFERENT SELECT DISTINCT Reveal answer Fill a bubble to check yourself D Correct answer Explanation The SELECT DISTINCT statement is used in SQL to return only unique (different) values from a column, filtering out all duplicate entries in the result set.