当前位置:   article > 正文

hive根据已有表创建新表_Hive中新建表

hive建表 基于 原表

最基本的建表语句:

create table student(

id string comment '学号',

name string comment '姓名',

sex string comment '性别',

age string comment '年龄'

) comment '学生表';

show create table student;

CREATE TABLE `student`(

`id` string COMMENT '学号',

`name` string COMMENT '姓名',

`sex` string COMMENT '性别',

`age` string COMMENT '年龄')

COMMENT '学生表'

ROW FORMAT SERDE

'org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe'

STORED AS INPUTFORMAT

'org.apache.hadoop.mapred.TextInputFormat'

OUTPUTFORMAT

'org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat'

LOCATION

'hdfs://mycluster/user/hive/warehouse/gld.db/student'

TBLPROPERTIES (

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/969615
推荐阅读
相关标签
  

闽ICP备14008679号