hive建表语句详解_建表的sql语句

(3) 2024-07-25 13:12

Hi,大家好,我是编程小6,很荣幸遇见你,我把这些年在开发过程中遇到的问题或想法写出来,今天说一说
hive建表语句详解_建表的sql语句,希望能够帮助你!!!。

create table if not exists tmp.create_test( uid bigint comment '推送用户id' ,app_key string comment 'app key' ,platform string comment '平台:a,i,w' ,itime bigint comment '10位业务时间戳' ,imei string comment '设备串号' ,channel string comment '渠道' ,sdk_ver string comment 'sdk版本' ,apk_ver string comment 'app版本' ,model string comment '设备型号' ,resolution string comment '分辨率' ,sys_ver string comment '系统版本' ) comment '用户注册日志天表' partitioned by (data_hour bigint comment 'data_hour格式:yyyyMMddHH 数据:日分区增量') stored as textfile row format delimited fields terminated by ',' collection items terminated by '-' map keys terminated by ':' tblproperties ( "author"="lanfz","a"="bbb"); --外部表 --external create external table t2( id int ,name string ,hobby array<string>

今天的分享到此就结束了,感谢您的阅读,如果确实帮到您,您可以动动手指转发给其他人。

上一篇

已是最后文章

下一篇

已是最新文章

发表回复