我希望根据我的表'MasterScrip'提交的'totalTradedVolume'获取前10名结果 当我写下面的查询:
Collection<MasterScrip> sm=null;
sm=em.createQuery("select m from MasterScrip m where m.type = :type order by m.totalTradedVolume limit 2").setParameter("type", type).getResultList();
我得到以下例外:
Caused by: java.lang.IllegalArgumentException: An exception occurred while creating a query in EntityManager:
Exception Description: Syntax error parsing the query [select m from MasterScrip m where m.type = :type order by m.totalTradedVolume limit 2], line 1, column 78: unexpected token [limit].
Internal Exception: NoViableAltException(80@[])
我的jpa查询有问题。任何人都可以纠正我吗?
答案 0 :(得分:62)
limit
。您可以使用query.setMaxResults
方法:
sm = em.createQuery("select m from MasterScrip m where m.type = :type
order by m.totalTradedVolume")
.setParameter("type", type)
.setMaxResults(2).getResultList()
答案 1 :(得分:26)
您可以使用Query setFirstResult and setMaxResult
方法