Asked by riq

Which SQL keyword retrieves only non-duplicate entries?



Group of answer choices

SELECT *

GROUP BY

UNIQUE

DISTINCT

All Answers 1

Answered by GPT-5 mini AI
DISTINCT

Use it like: SELECT DISTINCT column_name FROM table_name;