当前位置:首页 > 数据库 > SQlite

mysql – SQLite中的null-safe相等运算符<=>的等价物是什么?

的等价物是什么?' />

我需要确定MySQL<=> operator的SQLite的等价物.

任何的想法?

解决方法:

The IS and IS NOT operators work like = and != except when one or both
of the operands are NULL. In this case, if both operands are NULL,
then the IS operator evaluates to 1 (true) and the IS NOT operator
evaluates to 0 (false)

http://www.sqlite.org/lang_expr.html#isisnot


【说明】本文章由站长整理发布,文章内容不代表本站观点,如文中有侵权行为,请与本站客服联系(QQ:254677821)!