转换为条件查询

时间:2011-12-23 15:10:16

标签: java hibernate

如何将标准查询写入以下sql查询。

select i.item_id,i.item_name,l.item_price 
from items i,pricelists l,sections s 
where i.id=100 and l.item_id=100 
and i.item_id not in (select s.item_id where s.id=100);

先谢谢

1 个答案:

答案 0 :(得分:1)

以下是一篇关于某些基本Hibernate Criteria examples的文章的链接,此处是指向a question here on SO where the "NOT IN" was solved的链接。