hive query 函数
时间: 2023-11-03 20:08:17 浏览: 194
Hive支持许多内置函数和自定义函数,以下是一些常用的Hive函数:
1. 数学函数:abs、ceil、floor、round、exp、ln、log、power、sqrt、rand、sin、cos、tan、asin、acos、atan
2. 字符串函数:concat、concat_ws、substring、length、lower、upper、trim、ltrim、rtrim、regexp_replace、regexp_extract、split、locate、instr、ascii、unhex、overlay、reverse、initcap、translate
3. 日期函数:year、quarter、month、day、hour、minute、second、from_unixtime、unix_timestamp、date_add、date_sub、datediff、last_day、trunc、date_format、to_date、from_utc_timestamp、to_utc_timestamp、current_date、current_timestamp
4. 转换函数:cast、coalesce、nullif、if、case、when、then、else、nvl、decode
5. 聚合函数:count、sum、avg、min、max、collect_set、collect_list、count_distinct、percentile、percentile_approx
6. 分析函数:rank、dense_rank、row_number、lead、lag、nth_value、first_value、last_value、cume_dist、percent_rank
以上是Hive中常用的函数,可以根据实际需求选择使用。
阅读全文