hive中UDF的函数有哪些
时间: 2024-05-29 20:10:40 浏览: 179
HiveQL_UDF_函数V0.5.pdf
Hive中的UDF函数包括数学函数、字符串函数、日期函数、类型转换函数、条件函数等。常见的UDF函数如下:
1. 数学函数:abs、acos、asin、atan、ceil、cos、exp、floor、ln、log、power、round、sin、sqrt、tan等。
2. 字符串函数:concat、length、lower、ltrim、replace、rtrim、substr、trim、upper等。
3. 日期函数:day、hour、minute、month、second、year等。
4. 类型转换函数:cast、toBoolean、toDouble、toFloat、toInt、toLong、toString等。
5. 条件函数:case、if、when等。
除此之外,还有一些自定义的UDF函数,可以根据业务需求进行开发。
阅读全文