Which keyword is used to retrieve unique values in a SELECT statement in MySQL SQL?
Answer options
A
UNIQUE
B
DISTINCT
C
DIFFERENT
D
None of the given options
Correct answer: DISTINCT
Explanation
DISTINCT is the standard SQL keyword for removing duplicate rows from a result set.