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/1c16bbfb65d75c7347dc to your computer and use it in GitHub Desktop.
Save giacecco/1c16bbfb65d75c7347dc to your computer and use it in GitHub Desktop.
DROP TABLE IF EXISTS temp_retired_postcodes;
CREATE TABLE temp_retired_postcodes AS (
SELECT DISTINCT pcd
FROM lr_9501_1504
WHERE pcd NOT IN (SELECT pcd FROM temp_active_postcodes)
);
SELECT COUNT(pcd) FROM temp_retired_postcodes;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment