Presto Quick References
1. Quick References
Create Table … AS SELECT
CREATE TABLE IF NOT EXISTS schema.table_name
WITH (
format = 'parquet',
external_location = 's3://bucket/location/v0',
partitioned_by = ARRAY['created_date']
)
AS
WITH temp_table AS (
SELECT user_id, created_date
FROM some.table_name_haha
)
SELECT *
FROM temp_table
2. INSERT INTO … SELECT …
INSERT INTO schema.table_name
WITH temp_table AS (
SELECT user_id, created_date
FROM some.table_name_haha
)
SELECT *
FROM temp_table