Skip to content

Latest commit

 

History

History
11 lines (6 loc) · 312 Bytes

Selecting DISTINCT.md

File metadata and controls

11 lines (6 loc) · 312 Bytes

Get all the unique countries represented in the films table.

select DISTINCT(country) from films

Get all the different film certifications from the films table.

select DISTINCT(certification) from films

Get the different types of film roles from the roles table.

select DISTINCT(role) from roles