Computer Science

Which of the following keywords will you use in the following query to display the unique values of the column dept_name ?

SELECT ............... dept_name FROM Company;
  1. All
  2. From
  3. Distinct
  4. Name

SQL Queries

3 Likes

Answer

Distinct

Reason — The DISTINCT keyword is used to display the unique values of the column.

Answered By

2 Likes


Related Questions