欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

SQL建表语句代码分享

程序员文章站 2022-07-01 19:18:58
sql建表语句代码分享 create table rtb_item_ds --表名 ( id string comment 'id' --字段和描述...

sql建表语句代码分享

create table rtb_item_ds    --表名

(

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

,name string comment '名称'

,field string comment '账号领域'

)

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

partitioned by  --分区

(

ds string

)

lifecycle 1  --生命周期,可不写