🎴 Flashcard Mode

Technical Skills Assessment

Card1 / 17
Mastered0
Review0
QuestionClick to flip

The SQL command used to avoid the selection of duplicate rows is

AnswerClick to flip back
A
DISTINCT
💡 Explanation:

DISTINCT is the SQL keyword that eliminates duplicate rows from query results. When added to a SELECT statement, it ensures each row returned is unique. Options like UNIQUE, EXCLUSIVE, and DISCRETE are not valid SQL keywords for this purpose.

Change Mode