The SQL keyword used to retrieve only unique values is option C) DISTINCT.
The DISTINCT keyword is used in conjunction with the SELECT statement to eliminate duplicate rows from the result set.
It ensures that each returned row is unique by comparing the values in the specified columns.
When the DISTINCT keyword is used, only one instance of each unique value is included in the result set.
This is useful when you want to retrieve distinct or unique values from a table column or combination of columns.
Option A) DISTINCTIVE, option B) UNIQUE, and option D) DIFFERENT are not valid SQL keywords for retrieving unique values.