mirror of
https://github.com/sqlfluff/sqlfluff
synced 2025-12-17 19:31:32 +00:00
7 lines
138 B
SQL
7 lines
138 B
SQL
CREATE EXTERNAL TABLE IF NOT EXISTS foo (
|
|
col1 int,
|
|
col2 string
|
|
)
|
|
PARTITIONED BY (col3 string, col4 date)
|
|
LOCATION 'hdfs://path';
|