赞
踩
建表语句:
CREATE TABLE test
(
id
string,
name
string)
PARTITIONED BY (
dayno
string)
插入语句,注意string用单引号
insert test partition(dayno=‘20210812’) values(‘2’,‘name2’),(‘3’,‘name3’),(‘4’,‘name4’);
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。