Skip to content

Instantly share code, notes, and snippets.

@rruntsch
Created August 26, 2021 16:17
Show Gist options
  • Save rruntsch/e4aa0a6046a42051414079f87fa0837a to your computer and use it in GitHub Desktop.
Save rruntsch/e4aa0a6046a42051414079f87fa0837a to your computer and use it in GitHub Desktop.
-- get_city_population_dirty.sql
SELECT
City
, State_Code
, [Population]
FROM City_Population
ORDER BY
State_Code
, City;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment