建表约束
Posted lidapengwww
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了建表约束相关的知识,希望对你有一定的参考价值。
1.应用层建内部表,数仓表用外部表
2.存储格式一般选orcfile,除非需要直接load数据的表则选textfile
3.建表时要指定库名
hive的建表样例
create table if not exists 表名(
字段名 字段类型 comment‘字段描述‘
。。。。。。。。。。。。。。。。
,import_time string comment‘数据入库时间‘
)
row format delimited
fields terminated by ‘ ‘
collection items terminated by ‘,‘
map keys terminated by ‘:‘
stored as orcfile;
mysql的建表样例
create table if not exists 表名(
字段名 字段类型 comment‘字段描述‘
id varchar(60) character set utf8 collate utf8_bin default ‘‘ comment ‘编号‘
,key idx_model(model)
,ket idx_model_level_2(model_level_2)
)engine=myisam default charset=utf8 comment‘表名‘
以上是关于建表约束的主要内容,如果未能解决你的问题,请参考以下文章