摘要: 命令格式 INSERT OVERWRITE|INTO TABLE tablename [PARTITION (partcol1=val1, partcol2=val2 ...)] [(col1,col2 ...)] select_statement FROM from_statement; 参数说明 阅读全文
posted @ 2022-04-28 16:34 虾卡辣卡~ 阅读(2415) 评论(0) 推荐(0)
摘要: hive中的concat函数 concat函数有三种: 1、concat() 2、concat_ws() 3、group_concat() concat(str1,str2,str3) 连接所有字符串,如果有一个参数是null则返回null concat('a','b','c') 'abc' con 阅读全文
posted @ 2022-04-28 16:16 虾卡辣卡~ 阅读(172) 评论(0) 推荐(0)