Skip to content

Instantly share code, notes, and snippets.

@monimiller
Created October 27, 2022 16:12
Show Gist options
  • Save monimiller/4bd13d44a064a8e139e936b22268156b to your computer and use it in GitHub Desktop.
Save monimiller/4bd13d44a064a8e139e936b22268156b to your computer and use it in GitHub Desktop.
CREATE TABLE enigma_jhu (
   fips VARCHAR,
   admin2 VARCHAR,
   province_state VARCHAR,
   country_region VARCHAR,
   last_update VARCHAR,
   latitude DOUBLE,
   longitude DOUBLE,
   confirmed INTEGER,
   deaths INTEGER,
   recovered INTEGER,
   active INTEGER,
   combined_key VARCHAR
)
WITH (
   format = 'json',
   EXTERNAL_LOCATION = 's3://covid19-lake/enigma-jhu/json/');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment