5.3 SQL Data Types
5.7
select
complaint_type,
location_type,
city
from
nyc_311
limit
5
5.8
select
complaint_type,
location_type,
city
from
nyc_311
where
city = 'Brooklyn'
limit
5
5.9
select
complaint_type,
location_type,
city,
city = 'BROOKLYN'
from
nyc_311
limit
5