Database Management
Accenture Technical PrimermediumDatabase Management05 Sql Select Statement

How to retrieve department_id column without any duplication from employee relation?

Answer options

A
SELECT DISTINCT department_id FROM employee;
B
SELECT department_id FROM employee;
C
SELECT UNIQUE department_id FROM employee;
D
SELECT TOP 1 department_id FROM employee;

Correct answer: SELECT DISTINCT department_id FROM employee;

Explanation

Quick AnswerThe correct answer is SELECT DISTINCT department_id FROM employee; because it directly addresses the core logic of Database Management.

DISTINCT removes duplicates from the result set.

Related Accenture Database Management questions

Practice more Accenture Database Management questions

PrimerPrep has 1400+ practice questions, 2026 simulations and coding hands-on — all free.

Watch Walkthroughs!