Skip to content

Latest commit

 

History

History
5 lines (4 loc) · 248 Bytes

Null and not.md

File metadata and controls

5 lines (4 loc) · 248 Bytes

Get the names of people who are still alive, i.e. whose death date is missing. select name from people where deathdate is null

Get the number of films which don't have a language associated with them. select * from films where language is null