休止状態で次の HQL クエリがあります。
select x
from Item as x
where x not in (select o.item from Opinion as o where o.user =:user)
サブクエリ ( select o.item from Opinion as o where o.user =:user
) が空のリストを返さない限り、このクエリは正常に機能します。この場合、エラーが発生しました。
select o.item from Opinion as o where o.user =:user
サブクエリ ( ) が空のときに Hibernate がエラーを発生させないようにする方法はありますか?
空の ( ) でも機能するようにクエリを書き直すにはどうすればよいselect o.item from Opinion as o where o.user =:user
ですか?