You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SELECTMAX(monthly_count) AS highest_number FROM (SELECT EXTRACT(MONTH FROMdate) AS month, COUNT(*) AS monthly_count FROM`bigquery-public-data.chicago_crime.crime`WHERE primary_type ='MOTOR VEHICLE THEFT'AND year =2016GROUP BY month)