Multiple choice sql

Sql Command use to Avoid selection Of duplicate Rows?

  1. Distinct

  2. Unique

  3. Exclusive

  4. Discrete

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

DISTINCT is the correct SQL keyword to eliminate duplicate rows from query results. It's used in the SELECT clause like 'SELECT DISTINCT column_name'. UNIQUE is a constraint for table definition, not a query clause.