hive创建分区表的语句
时间: 2024-04-24 10:12:51 浏览: 82
Hive分区表
CREATE TABLE table_name (
column1 data_type,
column2 data_type,
...
)
PARTITIONED BY (partition_col1 data_type, partition_col2 data_type, ...)
ROW FORMAT DELIMITED
FIELDS TERMINATED BY ','
STORED AS TEXTFILE;
阅读全文