标签: hql
我要完成的工作如下。请让我知道如何将这两种情况组合成一个HQL条件查询。 如果myID不为null,则使用此查询
@Query("select item from Item where a = ?1 and b=?2 and c=?3 and myID=?4)
如果myID为null,则使用此查询
@Query("select item from Item where a = ?1 and b=?2 and c=?3)
谢谢!