SQL建表语句代码分享

sql建表语句代码分享

create table rtb_item_ds    --表名

(

id string comment 'id'    --字段和描述

,name string comment '名称'

,field string comment '账号领域'

)

comment '用户信息表'   --表的描述

partitioned by  --分区

(

ds string

)

lifecycle 1  --生命周期,可不写
(0)
上一篇 2022年3月21日
下一篇 2022年3月21日

相关推荐