Hibernate-Hql-到底是not is null还是is not null-测试发现h2都行

在Hibernate2.x里Hql支持 not is null 也支持 is not null  但是你打印出SQL语句就可以发现两者到最后生成的SQL语句都就变成了 is not null 

但是在Hibernate3.x里Hql就不支持 not is null 的写法了,这是公司系统从Hibernate2.x升级到Hibernate3.x时候发现的,所以在Hibernate2.x里还是不要写成 not is null,

免得升到Hibernate3的时候麻烦

你可能感兴趣的:(sql,Hibernate)