DISTINCT
AS
Use DISTINCT
to the different unique values stored in a column
select DISTINCT sex from employee;
This finds the number of sexes
Finds the different number of supervisors
select DISTINCT super_id from employee;