tidb迁移hive的坑

tidb迁移hive的坑,第1张

tidb迁移hive的坑

hive concat函数有一个参数为null,返回结果为null;

hive coalesce函数,其中第一个参数为",它的返回结果会为";

hive sql语句中如果有not in(),括号里面的只能为定值,不能是sql语句,要是想实现同样的功能,需要left join 这种语法;

hive insert override table xx 为覆盖表中数据;insert into table xx为追加数据;insert into db.table xx  加上数据库.表等同于insert override语句;

tidb 时间格式y%m%d% 等同于hive yyyymmdd;

tidb replace函数等同于hive的rege_replace函数;

hive concat_ws(',',collect_set(列名))其中collect_set内容是去重和无序的;

hive 也也可以使用with temp as()作为临时表使用;

 

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5715474.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-17
下一篇 2022-12-17

发表评论

登录后才能评论

评论列表(0条)

保存