赞
踩
insert SQL
insert overwrite table insert_table PARTITION ( column4 )
select column1, column2, column3
from source_table
建表 SQL
create table if not exists insert_table (
column1 string comment 'column1'
column2 string comment 'column2'
column3 string comment 'column3')
PARTITIONED BY (column4 string comment 'column4')
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。