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()作为临时表使用;

 

你可能感兴趣的:(hive,sql)