To return only unique (non-duplicate) values from a specific column in a…

2026

To return only unique (non-duplicate) values from a specific column in a query, which keyword must be used?

Answer: B. DISTINCTTo retrieve only unique (non-duplicate) values from a specific column in an SQL query, the keyword DISTINCT must be used. The syntax is SELECT DISTINCT…

  1. A.

    UNIQUE

  2. B.

    DISTINCT

  3. C.

    DIFFERENT

  4. D.

    SINGULAR

Attempted by 1605 students.

Show answer & explanation

Correct answer: B

To retrieve only unique (non-duplicate) values from a specific column in an SQL query, the keyword DISTINCT must be used. The syntax is SELECT DISTINCT column_name FROM table_name.

Explore the full course: Up Lt Grade Assistant Teacher 2025

Loading lesson…