【博学谷学习记录】超强总结,用心分享|Hive常用内置函数

语法round(double a)说明返回double类型的整数值部分(遵循四舍五入)

hive> select round(3.1415926);
3

语法round(double a, int b)说明返回指定精度d的double类型

hive> select round(3.1415926,4);
3.1416

语法floor(double a)说明返回等于或者小于该double变量的最大的整数

hive> select round(3.1415926);
3

语法ceil(double a)说明返回等于或者大于该double变量的最大的整数

hive> select round(3.1415926);
4

语法rand(), rand(int seed)说明返回一个0到1范围内的随机数。如果指定种子seed,则会返回固定的随机数

hive> select rand();
0.5577432776034763

hive> select rand();
0.6638336467363424

hive> select rand(100);
0.7220096548596434

hive> select rand(100);
0.7220096548596434

语法pow(double a, double p)说明返回a的p次幂

hive> select pow(2,4) ;
16

语法abs(double a) abs(int a)说明返回数值a的绝对值

hive> select abs(-3.9);
3.9

hive> select abs(10.9);
10.9

hive> select abs(-10);
10

语法length(string A)说明返回字符串A的长度

hive> select length('abcedfg');
7

语法reverse(string A)说明返回字符串A的反转结果

hive> select reverse("hello");
olleh

语法concat(string A, string B, …)说明返回输入字符串连接后的结果,支持任意个输入字符串

hive> select concat('hello','world');
helloworld

语法concat_ws(string SEP, string A, string B, …)说明返回输入字符串连接后的结果,SEP表示各个字符串间的分隔符

hive> select concat_ws(',','abc','def','gh');
abc,def,gh

语法split(string str, string pat)说明按照pat字符串分割str,会返回分割后的字符串数组

hive> select split('abtcdtef','t');
["ab","cd","ef"]

语法substr(string A, int start), substring(string A, int start)说明返回字符串A从start位置到结尾的字符串

hive> select substr('abcde',3);
cde

hive> select substring('abcde',3);
cde

hive>select substr('abcde',-1);
e

语法substr(string A, int start, int len), substring(string A, intstart, int len)说明返回字符串A从start位置开始,长度为len的字符串

hive> select substr('abcde',3,2);
cd

hive> select substring('abcde',3,2);
cd

hive>select substring('abcde',-2,2);
de

语法upper(string A), ucase(string A)说明返回字符串A的大写格式

hive> select upper('abSEd');
ABSED
hive> select ucase('abSEd');
ABSED

语法lower(string A), lcase(string A)说明返回字符串A的小写格式

hive> select lower('abSEd');
absed
hive> select lcase('abSEd');
absed

语法trim(string A)说明去除字符串两边的空格

hive> select trim(' abc d ');
'abc d'

语法ltrim(string A)说明去除字符串左边的空格

hive> select ltrim(' abc d ');
'abc d '

语法rtrim(string A)说明去除字符串右边的空格

hive> select rtrim(' abc d ');
' abc d'

语法regexp_replace(string A, string B, string C)说明将字符串A中的符合java正则表达式B的部分替换为C。注意,在有些情况下要使用转义字符,类似oracle中的regexp_replace函数

hive> select regexp_replace('foobar', 'oo|ar', '');
fb

语法parse_url(string urlString, string partToExtract [, stringkeyToExtract])说明返回URL中指定的部分。partToExtract的有效值为:

HOST,

PATH,

QUERY,

REF,

PROTOCOL,

AUTHORITY,

FILE,

USERINFO.

hive> select parse_url('http://www.baidu.com/path1/p.php?k1=v1&k2=v2#Ref1', 'HOST');
www.baidu.com

hive> select parse_url('http://www.baidu.com/path1/p.php?k1=v1&k2=v2#Ref1', 'PATH');
/path1/p.php

hive> select parse_url('http://www.baidu.com/path1/p.php?k1=v1&k2=v2#Ref1', 'QUERY','k1');
v1

语法current_date()说明返回格式为yyy-MM-dd的当前日期

hive> select current_date();
2022-10-24

语法current_timestamp()说明返回详细的当前日期和时间

hive> select current_timestamp();
2022-10-24 05:29:32.926000000

语法from_unixtime(bigint unixtime[, string format])说明转化UNIX时间戳(从1970-01-01 00:00:00 UTC到指定时间的秒数)到当前时区的时间格式

hive> select from_unixtime(1598079966,'yyyy-MM-dd HH:mm:ss');
2020-08-22 15:06:06

语法unix_timestamp(string date)说明转换格式为”yyyy-MM-ddHH:mm:ss”的日期到UNIX时间戳

hive> select unix_timestamp('2011-12-07 13:01:03');
1323234063

语法unix_timestamp(string date, string pattern)说明转换pattern格式的日期到UNIX时间戳

hive> select unix_timestamp('20111207 13:01:03','yyyyMMdd HH:mm:ss');
1323234063

语法to_date(string timestamp)说明返回日期时间字段中的日期部分

hive> select to_date('2011-12-08 10:03:01');
2011-12-08

语法year(string date)说明返回日期中的年

hive> select year('2011-12-08 10:03:01');
2011
hive> select year('2012-12-08');
2012

语法month (string date)说明返回日期中的月

hive> select month('2011-12-08 10:03:01');
12
hive> select month('2011-08-08');
8

语法day(string date)说明返回日期中的天

hive> select day('2011-12-08 10:03:01');
8
hive> select day('2011-12-24');
24

语法weekofyear (string date)说明返回日期在当前的周数

hive> select weekofyear('2011-12-08 10:03:01');
49

语法datediff(string enddate, string startdate)说明返回结束日期减去开始日期的天数

hive> select datediff('2012-12-08','2012-05-09');
213

语法date_add(string startdate, int days)说明返回开始日期startdate增加days天后的日期

hive> select date_add('2012-12-08',10);
2012-12-18

语法date_sub(string startdate, int days)说明返回开始日期startdate减少days天后的日期

hive> select date_sub('2012-12-08',10);
2012-11-28

语法date_format(string startdate, string pattern)说明返回指定格式的日期

hive> select date_format('2020-1-1 1:1:1', 'yyyy-MM-dd HH:mm:ss');
2020-01-01 01:01:01

Original: https://blog.csdn.net/xz842913787/article/details/127484403
Author: 熊猫同学呀
Title: 【博学谷学习记录】超强总结,用心分享|Hive常用内置函数

原创文章受到原创版权保护。转载请注明出处:https://www.johngo689.com/817800/

转载文章受原作者版权保护。转载请注明原作者出处!

(0)

大家都在看

亲爱的 Coder【最近整理,可免费获取】👉 最新必读书单  | 👏 面试题下载  | 🌎 免费的AI知识星球