HQL “is null” And “!= null” on an Oracle column

后端 未结 4 922
春和景丽
春和景丽 2020-12-15 15:10

Does hibernate convert column != null in HQL to a column is null in SQL?

4条回答
  •  春和景丽
    2020-12-15 15:26

    That is a binary operator in hibernate you should use

    is not null
    

    Have a look at 14.10. Expressions

提交回复
热议问题