目录

  • ​​hive outline​​
  • ​​hive 函数分类​​

hive outline

​​链接​​

hive 函数分类

Hive的函数分为2大类:内置函数、用户自定义函数

  1. 内置函数

比如:数值类型函数、日期类型函数、字符串类型函数、集合函数、条件函数等

  1. 用户自定义函数

根据函数的输入输出行数进行分类,比如:UDF、UDAF、UDTF

  1. UDF(User-Defined-Function)普通函数,​​一进一出​​,例如round函数

hive 函数分类_hive

  1. UDAF(User-Defined Aggregation Function)​​聚合函数,多进一出​​,比如count、sum这样的函数
  2. UDTF(User-Defined Table-Generating Functions)​​表生成函数,一进多出​​,比如explode函数

hive 函数分类_hive_02