Multiple choice sql

Which SQL statement is used to return only different values?

  1. SELECT UNIQUE

  2. SELECT INDENTITY

  3. SELECT DIFFERENT

  4. 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.