You need to enable JavaScript to run this app.
导航
8.7.6 操作符
最近更新时间:2022.09.05 11:25:41首次发布时间:2022.09.05 11:25:41
我的收藏
有用
有用
无用
无用

比较操作符

NameDescriptionMySQLElasticSearchHanaHBase
>Greater than operator支持支持支持支持
>=Greater than or equal operator支持支持支持支持
<Less than operator支持支持支持支持
<>,!=Not equal operator支持支持支持支持
<=Less than or equal operator支持支持支持支持
<=>NULL-safe equal to operator支持支持支持不支持
=Equal operator支持支持支持支持
BETWEEN ... AND ...Whether a value is within a range of values支持支持支持不支持
COALESCE()Return the first non-NULL argument支持支持支持不支持
GREATEST()Return the largest argument支持支持支持不支持
IN()Whether a value is within a set of values支持支持支持支持
ISTest a value against a boolean支持不支持支持不支持
IS NOTTest a value against a boolean支持不支持支持不支持
IS NOT NULLNOT NULL value test支持支持支持不支持
IS NULLNULL value test支持支持支持不支持
ISNULL()Test whether the argument is NULL支持不支持不支持不支持
LEAST()Return the smallest argument支持支持支持不支持
LIKESimple pattern matching支持支持支持不支持
NOT BETWEEN ... AND ...Whether a value is not within a range of values支持支持支持不支持
NOT IN()Whether a value is not within a set of values支持支持支持不支持
NOT LIKENegation of simple pattern matching支持支持支持不支持
STRCMP()Compare two strings支持不支持不支持不支持

逻辑操作符

NameDescriptionMySQLElasticSearchHanaHBase
AND,&&Logical AND支持支持支持支持
NOT,!Negates value支持支持支持不支持
OR,Logical OR支持支持
XORLogical XOR支持不支持支持不支持

位操作符

NameDescriptionMySQLElasticSearchHanaHBase
&Bitwise AND支持不支持支持不支持
>>Right shift支持不支持支持不支持
<<Left shift支持不支持支持不支持
^Bitwise XOR支持不支持支持不支持
Bitwise OR支持不支持支持
~Bitwise inversion支持不支持支持不支持