Computer Science, asked by gouri57shankar, 3 months ago

write a SQL query to fetch unique values of department for work table​

Answers

Answered by allysia
3

Answer:

select distinct department from work;

Explanation:

In order to get distinct value you need to specify from which column you need   to find the "unique" values from.

Assuming that the table work has a  column "department", run the query as mentioned above to get the unique values of department.

Similar questions