Hive 关系运算

等值比较: =

语法:A=B 操作类型:所有基本类型 描述: 如果表达式A与表达式B相等,则为TRUE;否则为FALSE

hive> select 1 from tableName where 1=1;

不等值比较: <>

语法: A <> B 操作类型: 所有基本类型 描述: 如果表达式A为NULL,或者表达式B为NULL,返回NULL;如果表达式A与表达式B不相等,则为TRUE;否则为FALSE

hive> select 1 from tableName where 1 <> 2;

小于比较: <

语法: A < B 操作类型:所有基本类型 描述: 如果表达式A为NULL,或者表达式B为NULL,返回NULL;如果表达式A小于表达式B,则为TRUE;否则为FALSE

hive> select 1 from tableName where 1 < 2;

小于等于比较: <=

语法: A <= B 操作类型: 所有基本类型 描述: 如果表达式A为NULL,或者表达式B为NULL,返回NULL;如果表达式A小于或者等于表达式B,则为TRUE;否则为FALSE

hive> select 1 from tableName where 1 < = 1;

大于比较: >

语法: A > B 操作类型: 所有基本类型 描述: 如果表达式A为NULL,或者表达式B为NULL,返回NULL;如果表达式A大于表达式B,则为TRUE;否则为FALSE

hive> select 1 from tableName where 2 > 1;

大于等于比较: >=

语法: A >= B 操作类型: 所有基本类型 描述: 如果表达式A为NULL,或者表达式B为NULL,返回NULL;如果表达式A大于或者等于表达式B,则为TRUE;否则为FALSE

hive> select 1 from tableName where 1 >= 1;
1

注意:String的比较要注意(常用的时间比较可以先 to_date 之后再比较)

hive> select * from tableName;
OK
2011111209 00:00:00     2011111209

hive> select a, b, a<b, a>b, a=b from tableName;
2011111209 00:00:00     2011111209      false   true    false

空值判断: IS NULL

语法: A IS NULL 操作类型: 所有类型 描述: 如果表达式A的值为NULL,则为TRUE;否则为FALSE

hive> select 1 from tableName where null is null;

非空判断: IS NOT NULL

语法: A IS NOT NULL 操作类型: 所有类型 描述: 如果表达式A的值为NULL,则为FALSE;否则为TRUE

hive> select 1 from tableName where 1 is not null;

LIKE比较: LIKE

语法: A LIKE B 操作类型: strings 描述: 如果字符串A或者字符串B为NULL,则返回NULL;如果字符串A符合表达式B 的正则语法,则为TRUE;否则为FALSE。B中字符”_”表示任意单个字符,而字符”%”表示任意数量的字符。

hive> select 1 from tableName where 'football' like 'foot%';

hive> select 1 from tableName where 'football' like 'foot____';

--注意:否定比较时候用NOT A LIKE B
hive> select 1 from tableName where NOT 'football' like 'fff%';

10、JAVA的LIKE操作: RLIKE

语法: A RLIKE B 操作类型: strings 描述: 如果字符串A或者字符串B为NULL,则返回NULL;如果字符串A符合JAVA正则表达式B的正则语法,则为TRUE;否则为FALSE。

hive> select 1 from tableName where 'footbar' rlike '^f.*r$';
1
注意:判断一个字符串是否全为数字:

hive>select 1 from tableName where '123456' rlike '^\\d+$';
1
hive> select 1 from tableName where '123456aa' rlike '^\\d+$';

11、REGEXP操作: REGEXP

语法: A REGEXP B 操作类型: strings 描述: 功能与RLIKE相同

hive> select 1 from tableName where 'footbar' REGEXP '^f.*r$';
1

results matching ""

    No results matching ""