07-03 DISTINCT

AS

01

Use DISTINCT to the different unique values stored in a column

select DISTINCT sex
from employee;

This finds the number of sexes

02

Finds the different number of supervisors

select DISTINCT super_id
from employee;