前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >【Hive】Hive 的内置函数

【Hive】Hive 的内置函数

作者头像
阿泽 Crz
发布2020-07-20 15:38:21
1.5K0
发布2020-07-20 15:38:21
举报
文章被收录于专栏:阿泽的学习笔记

这篇文章主要介绍 Hive 的一些内置函数,其目的在于了解和知道大概有哪些内置函数,以及我们能够做哪些操作。

不需要强记,只需要有一个大致的印象就行,需要时再去查找。

Hive 的内置函数包括:

  • 数学函数(Mathematical Functions);
  • 集合函数(Collection Functions);
  • 类型转换函数(Type Conversion Functions);
  • 日期函数(Date Functions);
  • 条件函数(Conditional Functions);
  • 字符串函数(String Functions);
  • 聚合函数(Aggregate Functions);
  • 表生成函数(Table-Generating Functions);

当然,Hive 还在一直更新,有需要的话,可以去官网去查看最新的函数。

1.Mathematical Functions

「Name (Signature)」

「Description」

round(DOUBLE a)

Returns the rounded BIGINT value of a.「返回对 a 四舍五入的 BIGINT 值」

round(DOUBLE a, INT d)

Returns a rounded to d decimal places.「返回 DOUBLE 型 d 的保留 n 位小数的 DOUBLE 型的近似值」

bround(DOUBLE a)

Returns the rounded BIGINT value of a using HALF_EVEN rounding mode (as of Hive 1.3.0, 2.0.0). Also known as Gaussian rounding or bankers' rounding. Example: bround(2.5) = 2, bround(3.5) = 4. 「银行家舍入法(1~4:舍,6~9:进,5->前位数是偶:舍,5->前位数是奇:进)」

bround(DOUBLE a, INT d)

Returns a rounded to d decimal places using HALF_EVEN rounding mode (as of Hive 1.3.0, 2.0.0). Example: bround(8.25, 1) = 8.2, bround(8.35, 1) = 8.4. 「银行家舍入法,保留 d 位小数」

floor(DOUBLE a)

Returns the maximum BIGINT value that is equal to or less than a「向下取整,最数轴上最接近要求的值的左边的值 如:6.10->6 -3.4->-4」

ceil(DOUBLE a), ceiling(DOUBLE a)

Returns the minimum BIGINT value that is equal to or greater than a.「求其不小于小给定实数的最小整数如:ceil(6) = ceil(6.1)= ceil(6.9) = 6」

rand(), rand(INT seed)

Returns a random number (that changes from row to row) that is distributed uniformly from 0 to 1. Specifying the seed will make sure the generated random number sequence is deterministic.「每行返回一个 DOUBLE 型随机数 seed 是随机因子」

exp(DOUBLE a), exp(DECIMAL a)

Returns ea where e is the base of the natural logarithm. Decimal version added in Hive 0.13.0.「返回 e 的 a 幂次方,a 可为小数」

ln(DOUBLE a), ln(DECIMAL a)

Returns the natural logarithm of the argument a. Decimal version added in Hive 0.13.0.「以自然数为底 d 的对数,a 可为小数」

log10(DOUBLE a), log10(DECIMAL a)

Returns the base-10 logarithm of the argument a. Decimal version added in Hive 0.13.0.「以 10 为底 d 的对数,a 可为小数」

log2(DOUBLE a), log2(DECIMAL a)

Returns the base-2 logarithm of the argument a. Decimal version added in Hive 0.13.0.「以 2 为底数 d 的对数,a 可为小数」

log(DOUBLE base, DOUBLE a)log(DECIMAL base, DECIMAL a)

Returns the base-base logarithm of the argument a. Decimal versions added in Hive 0.13.0.「以 base 为底的对数,base 与 a 都是 DOUBLE 类型」

pow(DOUBLE a, DOUBLE p), power(DOUBLE a, DOUBLE p)

Returns ap.「计算 a 的 p 次幂」

sqrt(DOUBLE a), sqrt(DECIMAL a)

Returns the square root of a. Decimal version added in Hive 0.13.0.「计算 a 的平方根」

bin(BIGINT a)

Returns the number in binary format.「计算二进制 a 的 STRING 类型,a 为 BIGINT 类型」

hex(BIGINT a) hex(STRING a) hex(BINARY a)

If the argument is an INT or binary, hex returns the number as a STRING in hexadecimal format. Otherwise if the number is a STRING, it converts each character into its hexadecimal representation and returns the resulting STRING. 「计算十六进制 a 的 STRING 类型,如果 a 为 STRING 类型就转换成字符相对应的十六进制」

unhex(STRING a)

Inverse of hex. Interprets each pair of characters as a hexadecimal number and converts to the byte representation of the number. (BINARY version as of Hive 0.12.0, used to return a string.)「hex 的逆方法」

conv(BIGINT num, INT from_base, INT to_base), conv(STRING num, INT from_base, INT to_base)

Converts a number from a given base to another.「将 BIGINT/STRING 类型的 num 从 from_base 进制转换成 to_base 进制」

abs(DOUBLE a)

Returns the absolute value.「计算 a 的绝对值」

pmod(INT a, INT b), pmod(DOUBLE a, DOUBLE b)

Returns the positive value of a mod b.「a 对 b 取模」

sin(DOUBLE a), sin(DECIMAL a)

Returns the sine of a (a is in radians). Decimal version added in Hive 0.13.0.「求 a 的正弦值」

asin(DOUBLE a), asin(DECIMAL a)

Returns the arc sin of a if -1<=a<=1 or NULL otherwise. Decimal version added in Hive 0.13.0.「求反正弦值」

cos(DOUBLE a), cos(DECIMAL a)

Returns the cosine of a (a is in radians). Decimal version added in Hive 0.13.0.「求余弦值」

acos(DOUBLE a), acos(DECIMAL a)

Returns the arccosine of a if -1<=a<=1 or NULL otherwise. Decimal version added in Hive 0.13.0.「求反余弦值」

tan(DOUBLE a), tan(DECIMAL a)

Returns the tangent of a (a is in radians). Decimal version added in Hive 0.13.0.「求正切值」

atan(DOUBLE a), atan(DECIMAL a)

Returns the arctangent of a. Decimal version added in Hive 0.13.0.「求反正切值」

degrees(DOUBLE a), degrees(DECIMAL a)

Converts value of a from radians to degrees. Decimal version added in Hive 0.13.0.「奖弧度值转换角度值」

radians(DOUBLE a), radians(DOUBLE a)

Converts value of a from degrees to radians. Decimal version added in Hive 0.13.0.「将角度值转换成弧度值」

positive(INT a), positive(DOUBLE a)

Returns a.**返回 a **

negative(INT a), negative(DOUBLE a)

Returns -a.「返回 a 的相反数」

sign(DOUBLE a), sign(DECIMAL a)

Returns the sign of a as '1.0' (if a is positive) or '-1.0' (if a is negative), '0.0' otherwise. The decimal version returns INT instead of DOUBLE. Decimal version added in Hive 0.13.0.「如果 a 是正数则返回 1.0,是负数则返回 -1.0,否则返回 0.0」

e()

Returns the value of e.「数学常数 e」

pi()

Returns the value of pi.「数学常数 pi」

factorial(INT a)

Returns the factorial of a (as of Hive 1.2.0). Valid a is [0..20]. 「求 a 的阶乘」

cbrt(DOUBLE a)

Returns the cube root of a double value (as of Hive 1.2.0). 「求 a 的立方根」

shiftleft(TINYINT|SMALLINT|INT a, INT b)shiftleft(BIGINT a, INT b)

Bitwise left shift (as of Hive 1.2.0). Shifts a b positions to the left.Returns int for tinyint, smallint and int a. Returns bigint for bigint a.「按位左移」

shiftright(TINYINT|SMALLINT|INT a, INTb)shiftright(BIGINT a, INT b)

Bitwise right shift (as of Hive 1.2.0). Shifts a b positions to the right.Returns int for tinyint, smallint and int a. Returns bigint for bigint a.「按拉右移」

shiftrightunsigned(TINYINT|SMALLINT|INTa, INT b),shiftrightunsigned(BIGINT a, INT b)

Bitwise unsigned right shift (as of Hive 1.2.0). Shifts a b positions to the right.Returns int for tinyint, smallint and int a. Returns bigint for bigint a.「无符号按位右移(<<<)」

greatest(T v1, T v2, ...)

Returns the greatest value of the list of values (as of Hive 1.1.0). Fixed to return NULL when one or more arguments are NULL, and strict type restriction relaxed, consistent with ">" operator (as of Hive 2.0.0). 「求最大值」

least(T v1, T v2, ...)

Returns the least value of the list of values (as of Hive 1.1.0). Fixed to return NULL when one or more arguments are NULL, and strict type restriction relaxed, consistent with "<" operator (as of Hive 2.0.0). 「求最小值」

2.Collection Functions

「Name(Signature)」

「Description」

size(Map<K.V>)

Returns the number of elements in the map type.「求 map 的长度」

size(Array)

Returns the number of elements in the array type.「求数组的长度」

map_keys(Map<K.V>)

Returns an unordered array containing the keys of the input map.「返回 map 中的所有 key」

map_values(Map<K.V>)

Returns an unordered array containing the values of the input map.「返回 map 中的所有 value」

array_contains(Array, value)

Returns TRUE if the array contains value.「如该数组 Array包含 value 返回 true。,否则返回 false」

sort_array(Array)

Sorts the input array in ascending order according to the natural ordering of the array elements and returns it (as of version 0.9.0).「按自然顺序对数组进行排序并返回」

3.Type Conversion Functions

「Name(Signature)」

Description

binary(string|binary)

Casts the parameter into a binary.「将输入的值转换成二进制」

cast(expr as)

Converts the results of the expression expr to. For example, cast('1' as BIGINT) will convert the string '1' to its integral representation. A null is returned if the conversion does not succeed. If cast(expr as boolean) Hive returns true for a non-empty string.「将 expr 转换成 type 类型 如:cast("1" as BIGINT) 将字符串 1 转换成了 BIGINT 类型,如果转换失败将返回 NULL」

4.Date Functions

「Name(Signature)」

「Description」

from_unixtime(bigint unixtime[, string format])

Converts the number of seconds from unix epoch (1970-01-01 00:00:00 UTC) to a string representing the timestamp of that moment in the current system time zone in the format of "1970-01-01 00:00:00".「将时间的秒值转换成 format 格式(format 可为“yyyy-MM-dd hh:mm:ss”,“yyyy-MM-dd hh”,“yyyy-MM-dd hh:mm”等等)如 from_unixtime(1250111000,"yyyy-MM-dd") 得到2009-03-12」

unix_timestamp()

Gets current Unix timestamp in seconds.「获取本地时区下的时间戳」

unix_timestamp(string date)

Converts time string in format yyyy-MM-dd HH:mm:ss to Unix timestamp (in seconds), using the default timezone and the default locale, return 0 if fail: unix_timestamp('2009-03-20 11:30:01') = 1237573801。「将格式为 yyyy-MM-dd HH:mm:ss 的时间字符串转换成时间戳 如 unix_timestamp('2009-03-20 11:30:01') = 1237573801」

unix_timestamp(string date, string pattern)

Convert time string with given pattern to Unix time stamp (in seconds), return 0 if fail: unix_timestamp('2009-03-20', 'yyyy-MM-dd') = 1237532400.「将指定时间字符串格式字符串转换成 Unix 时间戳,如果格式不对返回 0 如:unix_timestamp('2009-03-20', 'yyyy-MM-dd') = 1237532400」

to_date(string timestamp)

Returns the date part of a timestamp string: to_date("1970-01-01 00:00:00") = "1970-01-01".「返回时间字符串的日期部分」

year(string date)

Returns the year part of a date or a timestamp string: year("1970-01-01 00:00:00") = 1970, year("1970-01-01") = 1970.「返回时间字符串的年份部分」

quarter(date/timestamp/string)

Returns the quarter of the year for a date, timestamp, or string in the range 1 to 4 (as of Hive 1.3.0). Example: quarter('2015-04-08') = 2.「返回当前时间属性哪个季度,如quarter('2015-04-08') = 2」

month(string date)

Returns the month part of a date or a timestamp string: month("1970-11-01 00:00:00") = 11, month("1970-11-01") = 11.「返回时间字符串的月份部分」

day(string date) dayofmonth(date)

Returns the day part of a date or a timestamp string: day("1970-11-01 00:00:00") = 1, day("1970-11-01") = 1.「返回时间字符串的天」

hour(string date)

Returns the hour of the timestamp: hour('2009-07-30 12:58:59') = 12, hour('12:58:59') = 12.「返回时间字符串的小时」

minute(string date)

Returns the minute of the timestamp.「返回时间字符串的分钟」

second(string date)

Returns the second of the timestamp.「返回时间字符串的秒」

weekofyear(string date)

Returns the week number of a timestamp string: weekofyear("1970-11-01 00:00:00") = 44, weekofyear("1970-11-01") = 44.「返回时间字符串位于一年中的第几个周内 如weekofyear("1970-11-01 00:00:00") = 44, weekofyear("1970-11-01") = 44」

datediff(string enddate, string startdate)

Returns the number of days from startdate to enddate: datediff('2009-03-01', '2009-02-27') = 2.「计算开始时间 startdate 到结束时间 enddate 相差的天数」

date_add(string startdate, int days)

Adds a number of days to startdate: date_add('2008-12-31', 1) = '2009-01-01'.「从开始时间 startdate 加上 days」

date_sub(string startdate, int days)

Subtracts a number of days to startdate: date_sub('2008-12-31', 1) = '2008-12-30'.「从开始时间 startdate 减去 days」

from_utc_timestamp(timestamp, string timezone)

Assumes given timestamp is UTC and converts to given timezone (as of Hive 0.8.0). For example, from_utc_timestamp('1970-01-01 08:00:00','PST') returns 1970-01-01 00:00:00.「如果给定的时间戳并非 UTC,则将其转化成指定的时区下时间戳」

to_utc_timestamp(timestamp, string timezone)

Assumes given timestamp is in given timezone and converts to UTC (as of Hive 0.8.0). For example, to_utc_timestamp('1970-01-01 00:00:00','PST') returns 1970-01-01 08:00:00.「如果给定的时间戳指定的时区下时间戳,则将其转化成 UTC 下的时间戳」

current_date

Returns the current date at the start of query evaluation (as of Hive 1.2.0). All calls of current_date within the same query return the same value.「返回当前时间日期」

current_timestamp

Returns the current timestamp at the start of query evaluation (as of Hive 1.2.0). All calls of current_timestamp within the same query return the same value.「返回当前时间戳」

add_months(string start_date, int num_months)

Returns the date that is num_months after start_date (as of Hive 1.1.0). start_date is a string, date or timestamp. num_months is an integer. The time part of start_date is ignored. If start_date is the last day of the month or if the resulting month has fewer days than the day component of start_date, then the result is the last day of the resulting month. Otherwise, the result has the same day component as start_date.「返回当前时间下再增加 num_months 个月的日期」

last_day(string date)

Returns the last day of the month which the date belongs to (as of Hive 1.1.0). date is a string in the format 'yyyy-MM-dd HH:mm:ss' or 'yyyy-MM-dd'. The time part of date is ignored.「返回这个月的最后一天的日期,忽略时分秒部分(HH:mm:ss)」

next_day(string start_date, string day_of_week)

Returns the first date which is later than start_date and named as day_of_week (as of Hive1.2.0). start_date is a string/date/timestamp. day_of_week is 2 letters, 3 letters or full name of the day of the week (e.g. Mo, tue, FRIDAY). The time part of start_date is ignored. Example: next_day('2015-01-14', 'TU') = 2015-01-20.「返回当前时间的下一个星期 X 所对应的日期 如:next_day('2015-01-14', 'TU') = 2015-01-20 以2015-01-14 为开始时间,其下一个星期二所对应的日期为2015-01-20」

trunc(string date, string format)

Returns date truncated to the unit specified by the format (as of Hive 1.2.0). Supported formats: MONTH/MON/MM, YEAR/YYYY/YY. Example: trunc('2015-03-17', 'MM') = 2015-03-01.「返回时间的最开始年份或月份 如 trunc("2016-06-26",“MM”)=2016-06-01 trunc("2016-06-26",“YY”)=2016-01-01 注意所支持的格式为 MONTH/MON/MM, YEAR/YYYY/YY」

months_between(date1, date2)

Returns number of months between dates date1 and date2 (as of Hive 1.2.0). If date1 is later than date2, then the result is positive. If date1 is earlier than date2, then the result is negative. If date1 and date2 are either the same days of the month or both last days of months, then the result is always an integer. Otherwise the UDF calculates the fractional portion of the result based on a 31-day month and considers the difference in time components date1 and date2. date1 and date2 type can be date, timestamp or string in the format 'yyyy-MM-dd' or 'yyyy-MM-dd HH:mm:ss'. The result is rounded to 8 decimal places. Example: months_between('1997-02-28 10:30:00', '1996-10-30') = 3.94959677「返回 date1 与 date2 之间相差的月份,如 date1>date2,则返回正,如果date1<date2,则返回负,否则返回 0.0 如:months_between('1997-02-28 10:30:00', '1996-10-30') = 3.94959677 1997-02-28 10:30:00与1996-10-30 相差 3.94959677 个月」

date_format(date/timestamp/string ts, string fmt)

Converts a date/timestamp/string to a value of string in the format specified by the date format fmt (as of Hive 1.2.0). Supported formats are Java SimpleDateFormat formats. The second argument fmt should be constant. Example: date_format('2015-04-08', 'y') = '2015'.date_format can be used to implement other UDFs, e.g.:dayname(date) is date_format(date, 'EEEE')dayofyear(date) is date_format(date, 'D')「按指定格式返回时间 date 如:date_format("2016-06-22","MM-dd")=06-22」

5.Conditional Functions

「Name(Signature)」

「Description」

if(boolean testCondition, T valueTrue, T valueFalseOrNull)

Returns valueTrue when testCondition is true, returns valueFalseOrNull otherwise.「如果 testCondition 为 true 就返回valueTrue,否则返回 valueFalseOrNull ,(valueTrue,valueFalseOrNull 为泛型)」

nvl(T value, T default_value)

Returns default value if value is null else returns value (as of HIve 0.11).「如果 value 值为 NULL 就返回 default_value,否则返回 value」

COALESCE(T v1, T v2, ...)

Returns the first v that is not NULL, or NULL if all v's are NULL.「返回第一非 NULL 的值,如果全部都为 NULL 就返回 NULL 如:COALESCE (NULL,44,55)=44」

CASE a WHEN b THEN c [WHEN d THEN e]* [ELSE f] END

When a = b, returns c; when a = d, returns e; else returns f.「如果 a=b 就返回 c,a=d 就返回 e,否则返回 f。如 CASE 4 WHEN 5 THEN 5 WHEN 4 THEN 4 ELSE 3 END 将返回 4」

CASE WHEN a THEN b [WHEN c THEN d]* [ELSE e] END

When a = true, returns b; when c = true, returns d; else returns e.「如果 a=ture 就返回 b,c=ture 就返回 d,否则返回 e 如:CASE WHEN 5>0 THEN 5 WHEN 4>0 THEN 4 ELSE 0 END 将返回5;CASE WHEN 5<0 THEN 5 WHEN 4<0 THEN 4 ELSE 0 END 将返回0」

isnull( a )

Returns true if a is NULL and false otherwise.「如果 a 为 null 就返回 true,否则返回 false」

isnotnull ( a )

Returns true if a is not NULL and false otherwise.「如果 a 为非 null 就返回 true,否则返回 false」

6.String Functions

「Name(Signature)」

「Description」

ascii(string str)

Returns the numeric value of the first character of str.「返回 str 中首个 ASCII 字符串的整数值」

base64(binary bin)

Converts the argument from binary to a base 64 string (as of Hive 0.12.0)..「将二进制 bin 转换成 64 位的字符串」

concat(string|binary A, string|binary B...)

Returns the string or bytes resulting from concatenating the strings or bytes passed in as parameters in order. For example, concat('foo', 'bar') results in 'foobar'. Note that this function can take any number of input strings..「对二进制字节码或字符串按次序进行拼接」

context_ngrams(array<array>, array, int K, int pf)

Returns the top-k contextual N-grams from a set of tokenized sentences, given a string of "context". See StatisticsAndDataMining for more information..「与 ngram 类似,但context_ngram()允许你预算指定上下文(数组)来去查找子序列,具体看StatisticsAndDataMining」

concat_ws(string SEP, string A, string B...)

Like concat() above, but with custom separator SEP.「与 concat()类似,但使用指定的分隔符喜进行分隔」

concat_ws(string SEP, array)

Like concat_ws() above, but taking an array of strings. (as of Hive 0.9.0).「拼接 Array 中的元素并用指定分隔符进行分隔」

decode(binary bin, string charset)

Decodes the first argument into a String using the provided character set (one of 'US-ASCII', 'ISO-8859-1', 'UTF-8', 'UTF-16BE', 'UTF-16LE', 'UTF-16'). If either argument is null, the result will also be null. (As of Hive 0.12.0.).「使用指定的字符集 charset 将二进制值 bin 解码成字符串,支持的字符集有:'US-ASCII', 'ISO-8859-1', 'UTF-8', 'UTF-16BE', 'UTF-16LE', 'UTF-16',如果任意输入参数为 NULL 都将返回 NULL」

encode(string src, string charset)

Encodes the first argument into a BINARY using the provided character set (one of 'US-ASCII', 'ISO-8859-1', 'UTF-8', 'UTF-16BE', 'UTF-16LE', 'UTF-16'). If either argument is null, the result will also be null. (As of Hive 0.12.0.).「使用指定的字符集 charset 将字符串编码成二进制值,支持的字符集有:'US-ASCII', 'ISO-8859-1', 'UTF-8', 'UTF-16BE', 'UTF-16LE', 'UTF-16',如果任一输入参数为 NULL 都将返回 NULL」

find_in_set(string str, string strList)

Returns the first occurance of str in strList where strList is a comma-delimited string. Returns null if either argument is null. Returns 0 if the first argument contains any commas. For example, find_in_set('ab', 'abc,b,ab,c,def') returns 3..「返回以逗号分隔的字符串中 str 出现的位置,如果参数 str 为逗号或查找失败将返回 0,如果任一参数为 NULL 将返回 NULL」

format_number(number x, int d)

Formats the number X to a format like '#,###,###.##', rounded to D decimal places, and returns the result as a string. If D is 0, the result has no decimal point or fractional part. (As of Hive 0.10.0; bug with float types fixed in Hive 0.14.0, decimal type support added in Hive 0.14.0).「将数值 X 转换成"#,###,###.##"格式字符串,并保留 d 位小数,如果 d 为 0,将进行四舍五入且不保留小数」

get_json_object(string json_string, string path)

Extracts json object from a json string based on json path specified, and returns json string of the extracted json object. It will return null if the input json string is invalid. 「NOTE: The json path can only have the characters [0-9a-z_], i.e., no upper-case or special characters. Also, the keys *cannot start with numbers.」* This is due to restrictions on Hive column names..「从指定路径上的 JSON 字符串抽取出 JSON 对象,并返回这个对象的 JSON 格式,如果输入的 JSON 是非法的将返回 NULL,注意此路径上 JSON 字符串只能由数字 字母 下划线组成且不能有大写字母和特殊字符,且 key 不能由数字开头,这是由于 Hive 对列名的限制」

in_file(string str, string filename)

Returns true if the string str appears as an entire line in filename..「如果文件名为 filename 的文件中有一行数据与字符串 str 匹配成功就返回 true」

instr(string str, string substr)

Returns the position of the first occurrence of substr in str. Returns null if either of the arguments are null and returns 0 if substr could not be found in str. Be aware that this is not zero based. The first character in str has index 1.「查找字符串 str 中子字符串 substr 出现的位置,如果查找失败将返回 0,如果任一参数为 NULL 将返回 NULL,注意位置为从 1 开始的」

length(string A)

Returns the length of the string..「返回字符串的长度」

locate(string substr, string str[, int pos])

Returns the position of the first occurrence of substr in str after position pos..「查找字符串 str 中的 pos 位置后字符串 substr 第一次出现的位置」

lower(string A) lcase(string A)

Returns the string resulting from converting all characters of B to lower case. For example, lower('fOoBaR') results in 'foobar'..「将字符串 A 的所有字母转换成小写字母」

lpad(string str, int len, string pad)

Returns str, left-padded with pad to a length of len..「从左边开始对字符串 str 使用字符串 pad 填充,最终 len 长度为止,如果字符串 str 本身长度比 len 大的话,将去掉多余的部分」

ltrim(string A)

Returns the string resulting from trimming spaces from the beginning(left hand side) of A. For example, ltrim(' foobar ') results in 'foobar '..「去掉字符串 A 前面的空格」

ngrams(array<array>, int N, int K, int pf)

Returns the top-k N-grams from a set of tokenized sentences, such as those returned by the sentences() UDAF. See StatisticsAndDataMining for more information..**返回出现次数 TOP K 的的子序列,n 表示子序列的长度,具体看StatisticsAndDataMining **

parse_url(string urlString, string partToExtract [, string keyToExtract])

Returns the specified part from the URL. Valid values for partToExtract include HOST, PATH, QUERY, REF, PROTOCOL, AUTHORITY, FILE, and USERINFO. For example, parse_url('http://facebook.com/path1/p.php?k1=v1&k2=v2#Ref1', 'HOST') returns 'facebook.com'. Also a value of a particular key in QUERY can be extracted by providing the key as the third argument, for example, parse_url('http://facebook.com/path1/p.php?k1=v1&k2=v2#Ref1', 'QUERY', 'k1') returns 'v1'..「返回从 URL 中抽取指定部分的内容,参数 urlString 是 URL 字符串,而参数 partToExtract 是要抽取的部分,这个参数包含(HOST, PATH, QUERY, REF, PROTOCOL, AUTHORITY, FILE, and USERINFO,例如:parse_url('http://facebook.com/path1/p.php?k1=v1&k2=v2#Ref1', 'HOST') ='facebook.com',如果参数 partToExtract 值为 QUERY 则必须指定第三个参数 key 如:parse_url('http://facebook.com/path1/p.php?k1=v1&k2=v2#Ref1', 'QUERY', 'k1') =‘v1’」

printf(String format, Obj... args)

Returns the input formatted according do printf-style format strings (as of Hive0.9.0)..「按照 printf 风格格式输出字符串」

regexp_extract(string subject, string pattern, int index)

Returns the string extracted using the pattern. For example, regexp_extract('foothebar', 'foo(.*?)(bar)', 2) returns 'bar.' Note that some care is necessary in using predefined character classes: using '\s' as the second argument will match the letter s; '\s' is necessary to match whitespace, etc. The 'index' parameter is the Java regex Matcher group() method index. See docs/api/java/util/regex/Matcher.html for more information on the 'index' or Java regex group() method..「抽取字符串 subject 中符合正则表达式 pattern 的第 index 个部分的子字符串,注意些预定义字符的使用,如第二个参数如果使用'\s'将被匹配到s,'\s'才是匹配空格」

regexp_replace(string INITIAL_STRING, string PATTERN, string REPLACEMENT)

Returns the string resulting from replacing all substrings in INITIAL_STRING that match the java regular expression syntax defined in PATTERN with instances of REPLACEMENT. For example, regexp_replace("foobar", "oo|ar", "") returns 'fb.' Note that some care is necessary in using predefined character classes: using '\s' as the second argument will match the letter s; '\s' is necessary to match whitespace, etc..「按照 Java 正则表达式 PATTERN 将字符串 INTIAL_STRING 中符合条件的部分成 REPLACEMENT 所指定的字符串,如里 REPLACEMENT 这空的话,抽符合正则的部分将被去掉 如:regexp_replace("foobar", "oo|ar", "") = 'fb.' 注意些预定义字符的使用,如第二个参数如果使用'\s'将被匹配到s,'\s'才是匹配空格」

repeat(string str, int n)

Repeats str n times..「重复输出 n 次字符串 str」

reverse(string A)

Returns the reversed string..「反转字符串」

rpad(string str, int len, string pad)

Returns str, right-padded with pad to a length of len..「从右边开始对字符串 str 使用字符串 pad 填充,最终 len 长度为止,如果字符串 str 本身长度比 len 大的话,将去掉多余的部分」

rtrim(string A)

Returns the string resulting from trimming spaces from the end(right hand side) of A. For example, rtrim(' foobar ') results in ' foobar'..「去掉字符串后面出现的空格」

sentences(string str, string lang, string locale)

Tokenizes a string of natural language text into words and sentences, where each sentence is broken at the appropriate sentence boundary and returned as an array of words. The 'lang' and 'locale' are optional arguments. For example, sentences('Hello there! How are you?') returns ( ("Hello", "there"), ("How", "are", "you") )..「字符串 str 将被转换成单词数组,如:sentences('Hello there! How are you?') =( ("Hello", "there"), ("How", "are", "you") )」

space(int n)

Returns a string of n spaces..「返回 n 个空格」

split(string str, string pat)

Splits str around pat (pat is a regular expression)..「按照正则表达式 pat 来分割字符串 str,并将分割后的数组字符串的形式返回」

str_to_map(text[, delimiter1, delimiter2])

Splits text into key-value pairs using two delimiters. Delimiter1 separates text into K-V pairs, and Delimiter2 splits each K-V pair. Default delimiters are ',' for delimiter1 and '=' for delimiter2..「将字符串 str 按照指定分隔符转换成 Map,第一个参数是需要转换字符串,第二个参数是键值对之间的分隔符,默认为逗号;第三个参数是键值之间的分隔符,默认为"="」

substr(string|binary A, int start) substring(string|binary A, int start)

Returns the substring or slice of the byte array of A starting from start position till the end of string A. For example, substr('foobar', 4) results in 'bar' (see [http://dev.mysql.com/doc/refman/5.0/en/string-functions.html#function_substr])..「对于字符串 A,从 start 位置开始截取字符串并返回」

substr(string|binary A, int start, int len) substring(string|binary A, int start, int len)

Returns the substring or slice of the byte array of A starting from start position with length len. For example, substr('foobar', 4, 1) results in 'b' (see [http://dev.mysql.com/doc/refman/5.0/en/string-functions.html#function_substr])..「对于二进制/字符串 A,从 start 位置开始截取长度为 length 的字符串并返回」

substring_index(string A, string delim, int count)

Returns the substring from string A before count occurrences of the delimiter delim (as of Hive 1.3.0). If count is positive, everything to the left of the final delimiter (counting from the left) is returned. If count is negative, everything to the right of the final delimiter (counting from the right) is returned. Substring_index performs a case-sensitive match when searching for delim. Example: substring_index('www.apache.org', '.', 2) = 'www.apache'..「截取第 count 分隔符之前的字符串,如 count 为正则从左边开始截取,如果为负则从右边开始截取」

translate(string|char|varchar input, string|char|varchar from, string|char|varchar to)

Translates the input string by replacing the characters present in the from string with the corresponding characters in the to string. This is similar to the translatefunction in PostgreSQL. If any of the parameters to this UDF are NULL, the result is NULL as well. (Available as of Hive 0.10.0, for string types)Char/varchar support added as of Hive 0.14.0..「将 input 出现在 from 中的字符串替换成 to 中的字符串 如:translate("MOBIN","BIN","M")="MOM"」

trim(string A)

Returns the string resulting from trimming spaces from both ends of A. For example, trim(' foobar ') results in 'foobar'.「将字符串 A 前后出现的空格去掉」

unbase64(string str)

Converts the argument from a base 64 string to BINARY. (As of Hive 0.12.0.).「将 64 位的字符串转换二进制值」

upper(string A) ucase(string A)

Returns the string resulting from converting all characters of A to upper case. For example, upper('fOoBaR') results in 'FOOBAR'..「将字符串 A 中的字母转换成大写字母」

initcap(string A)

Returns string, with the first letter of each word in uppercase, all other letters in lowercase. Words are delimited by whitespace. (As of Hive 1.1.0.).「将字符串 A 转换第一个字母大写其余字母的字符串」

levenshtein(string A, string B)

Returns the Levenshtein distance between two strings (as of Hive 1.2.0). For example, levenshtein('kitten', 'sitting') results in 3..「计算两个字符串之间的差异大小 如:levenshtein('kitten', 'sitting') = 3」

soundex(string A)

Returns soundex code of the string (as of Hive 1.2.0). For example, soundex('Miller') results in M460..「将普通字符串转换成 soundex 字符串」

7.Aggregate Functions

「Name(Signature)」

「Description」

count(*), count(expr), count(DISTINCT expr[, expr...])

count(*) - Returns the total number of retrieved rows, including rows containing NULL values.「统计总行数,包括含有 NULL 值的行」count(expr) - Returns the number of rows for which the supplied expression is non-NULL.「统计提供非 NULL 的 expr 表达式值的行数」count(DISTINCT expr[, expr]) - Returns the number of rows for which the supplied expression(s) are unique and non-NULL. Execution of this can be optimized with hive.optimize.distinct.rewrite.「统计提供非 NULL 且去重后的 expr 表达式值的行数」

sum(col), sum(DISTINCT col)

Returns the sum of the elements in the group or the sum of the distinct values of the column in the group.「sum(col),表示求指定列的和,sum(DISTINCT col)表示求去重后的列的和」

avg(col), avg(DISTINCT col)

Returns the average of the elements in the group or the average of the distinct values of the column in the group.「avg(col),表示求指定列的平均值,avg(DISTINCT col)表示求去重后的列的平均值」

min(col)

Returns the minimum of the column in the group.「求指定列的最小值」

max(col)

Returns the maximum value of the column in the group.「求指定列的最大值」

variance(col), var_pop(col)

Returns the variance of a numeric column in the group.「求指定列数值的方差」

var_samp(col)

Returns the unbiased sample variance of a numeric column in the group.「求指定列数值的样本方差」

stddev_pop(col)

Returns the standard deviation of a numeric column in the group.「求指定列数值的标准偏差」

stddev_samp(col)

Returns the unbiased sample standard deviation of a numeric column in the group.「求指定列数值的样本标准偏差」

covar_pop(col1, col2)

Returns the population covariance of a pair of numeric columns in the group.「求指定列数值的协方差」

covar_samp(col1, col2)

Returns the sample covariance of a pair of a numeric columns in the group.「求指定列数值的样本协方差」

corr(col1, col2)

Returns the Pearson coefficient of correlation of a pair of a numeric columns in the group.「返回两列数值的相关系数」

percentile(BIGINT col, p)

Returns the exact pth percentile of a column in the group (does not work with floating point types). p must be between 0 and 1. NOTE: A true percentile can only be computed for integer values. Use PERCENTILE_APPROX if your input is non-integral.「返回 col 的 p% 分位数」

8.Table-Generating Functions

「Name(Signature)」

「Description」

explode(array<TYPE> a)

For each element in a, generates a row containing that element.「对于 a 中的每个元素,将生成一行且包含该元素」

explode(ARRAY)

Returns one row for each element from the array..「每行对应数组中的一个元素」

explode(MAP)

Returns one row for each key-value pair from the input map with two columns in each row: one for the key and another for the value. (As of Hive 0.8.0.).「每行对应每个 map 键-值,其中一个字段是 map 的键,另一个字段是 map 的值」

posexplode(ARRAY)

Behaves like explode for arrays, but includes the position of items in the original array by returning a tuple of (pos, value). (As of Hive 0.13.0.).「与 explode 类似,不同的是还返回各元素在数组中的位置」

stack(INT n, v_1, v_2, ..., v_k)

Breaks up v_1, ..., v_k into n rows. Each row will have k/n columns. n must be constant..「把 M 列转换成 N 行,每行有 M/N 个字段,其中 n 必须是个常数」

json_tuple(jsonStr, k1, k2, ...)

Takes a set of names (keys) and a JSON string, and returns a tuple of values. This is a more efficient version of the get_json_object UDF because it can get multiple keys with just one call..「从一个 JSON 字符串中获取多个键并作为一个元组返回,与 get_json_object 不同的是此函数能一次获取多个键值」

parse_url_tuple(url, p1, p2, ...)

This is similar to the parse_url() UDF but can extract multiple parts at once out of a URL. Valid part names are: HOST, PATH, QUERY, REF, PROTOCOL, AUTHORITY, FILE, USERINFO, QUERY:..「返回从 URL 中抽取指定 N 部分的内容,参数 url 是 URL 字符串,而参数 p1,p2,....是要抽取的部分,这个参数包含 HOST, PATH, QUERY, REF, PROTOCOL, AUTHORITY, FILE, USERINFO, QUERY:」

inline(ARRAY<STRUCT[,STRUCT]>)

Explodes an array of structs into a table. (As of Hive 0.10.).「将结构体数组提取出来并插入到表中」

9.Reference

  1. Hive学习之路 (九)Hive的内置函数
  2. LanguageManual UDF
本文参与 腾讯云自媒体同步曝光计划,分享自微信公众号。
原始发表:2020-07-20,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 阿泽的学习笔记 微信公众号,前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 1.Mathematical Functions
  • 2.Collection Functions
  • 3.Type Conversion Functions
  • 4.Date Functions
  • 5.Conditional Functions
  • 6.String Functions
  • 7.Aggregate Functions
  • 8.Table-Generating Functions
  • 9.Reference
相关产品与服务
大数据
全栈大数据产品,面向海量数据场景,帮助您 “智理无数,心中有数”!
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档