Hive SQL学习之路--知识点1

Hive SQL学习之路–知识点1
split函数
1.用法
split(str,regex)
将字符串按照regex进行分割成字符串数组

常见用法:
select split(‘http://sale.jd.com/act/dfsdg.html‘,’/’) 结果:[“http:”,”“,”sale.jd.com”,”act”,”dfsdg.html”]这里写图片描述

select split(‘http://sale.jd.com/act/dfsdg.html‘,’/’)[0] 结果:http:

其中,regex 为模式匹配参数,如果有特殊字符需要转义。
select split(“192\\168\\1\\1”,’\\’)[0] 结果:192
select split(‘192\\168\\1\\1’,’\\’)[0] 结果:192

select split(‘http://sale.jd.com‘,’//’)[1] 结果:sale.jd.com

like函数
1. Hive中LIKE查询使用通配符’%’的一个BUG–当转义符’\’遇到通配符’%’或’_’

IF函数
IF( Test Condition, True Value, False Value )
The IF condition evaluates the “Test Condition” and if the “Test Condition” is true, then it returns the “True Value”. Otherwise, it returns the False Value.
Example: IF(1=1, ‘working’, ‘not working’) returns ‘working’

COALESCE( value1,value2,… )

The COALESCE function returns the fist not NULL value from the list of values. If all the values in the list are NULL, then it returns NULL.
Example: COALESCE(NULL,NULL,5,NULL,4) returns 5

CASE Statement

The syntax for the case statement is:
CASE [ expression ]
WHEN condition1 THEN result1
WHEN condition2 THEN result2

WHEN conditionn THEN resultn
ELSE result
END
Here expression is optional. It is the value that you are comparing to the list of conditions. (ie: condition1, condition2, … conditionn).

HIVE中的引号问题

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值