我的 Postgres 9.0 数据库中有一个简单的表:
create table test (id int not null, value int);
我用几行填充了它:
insert into test values (1, 1);
insert into test values (2, null);
insert into test values (3, null);
insert into test values (4, 1);
现在我正在尝试使用 JDBC 来阅读它。当我通过列中的非空值进行选择时value
,一切都很好:
PreparedStatement select = c.prepareStatement("select * from test where value=?");
select.setInt(1, 1);
return select.executeQuery();
但是当我想选择value
为空的行时,结果集不包含任何行。我已经尝试了这两种方法:
select.setObject(1, null);
和
select.setNull(1, Types.INTEGER);
都不工作!
这是怎么回事?我知道检查 NULL 的正确 SQLwhere value is null
不是,where value=null
但 JDBC 肯定足够聪明,可以为我解决这个问题?