Skip to content

Instantly share code, notes, and snippets.

@giacecco
Last active August 29, 2015 14:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save giacecco/da4ac2fb282d4c6f2c44 to your computer and use it in GitHub Desktop.
Save giacecco/da4ac2fb282d4c6f2c44 to your computer and use it in GitHub Desktop.
DROP TABLE IF EXISTS temp_active_postcodes;
CREATE TABLE temp_active_postcodes AS (
SELECT DISTINCT id AS pcd
FROM os_open_names
WHERE local_type = 'Postcode' AND country IN ('England', 'Wales')
);
SELECT COUNT(pcd) FROM temp_active_postcodes;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment