2010-03-08 64 views

回答

5

只寫一個正常的查詢,答使用「SetMaxResult」,以限制搜索結果。

I.e.

return getSession().createQuery("from items order by id asc") 
      .setMaxResults(1) 
      .list(); 
1

您可能會想要使用Query Object的setMaxResults。

據我所知,HQL不支持top或limit。