在MysqL中有一个比较运算符,它是一个空保险箱:< =>.我在创建这样的预处理语句时在我的
Java程序中使用它:
String routerAddress = getSomeValue(); String sql = "SELECT * FROM ROUTERS WHERE ROUTER_ADDRESS <=> ? "; PreparedStatement stmt = connection.prepareStatement(sql); stmt.setString(1,routerAddress);@H_301_3@现在我想切换到H2数据库.如何写< =>纯sql中的运算符(例如使用IS NULL和IS NOT NULL)?我想只使用stmt.setString操作一次.可以多次编写列名称.
相关问题是Get null == null in SQL.但是那个答案要求搜索值写2次(即我的PreparedStatement中有2个问号)!?
参考:
http://dev.mysql.com/doc/refman/5.0/en/comparison-operators.html#operator_equal-to
解决方法
Related question is Get null == null in sql. But that answer requires the search value to be written 2 times (that is: 2 question marks in my PreparedStatement)!?
排名第二和随后的答案提供了一种方法,可以在不将搜索值绑定两次的情况下执行此操作:
SELECT * FROM ROUTERS WHERE coalesce(ROUTER_ADDRESS,'') = coalesce( ?,'');@H_301_3@请注意,这需要一个永远不能是有效列值的虚拟值(即“带外”);我正在使用空字符串.如果你没有任何这样的值,你将不得不忍受两次绑定值:
SELECT * FROM ROUTERS WHERE ROUTER_ADDRESS = ? or (ROUTER_ADDRESS is null and ? is null);@H_301_3@