我尝试了这个:
from Table where (:par1 is null or col1 = :par1)
但是碰巧
from Table where :par1 is null
即使:par1不为null,也总是返回表的所有行。
而
select * from table where col1 = 'asdf'
不返回任何行。
我不能使用本机语法,因为我的应用程序应该在不同的数据库引擎上运行
最佳答案
与HQL中的nvl
命令等效的是coalesce
命令。如果coalesce(a,b)
不为null,则a
将返回a
,否则返回b
。
因此,您需要以下方面的东西:
from Table where col1 = coalesce(:par1, 'asdf')
关于hibernate - 如何在HQL中模拟NVL,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/601615/