时间列转化&&动态指定分区Insert数据
摘要: --使用 from_unixtime 和 unix_timestamp 将时间列转化成想要的格式
--然后再Insert表,动态指定分区
insert overwrite table partition_user_table partition (dt) select id, account, name, create_time, from_unixtime(unix_timestamp(create_time,'yyyy/mm/dd'),'yyyymmdd') as dt from external_user_table;
阅读全文
posted @
2018-04-02 16:47 Ke 阅读(540) |
评论 (0) 编辑