可能性のある複製:
JPAを使用して上位1件の結果を選択
次のクエリを作成するときに、テーブル '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クエリに問題があります。誰かが私を修正できますか?
limit
はJPAでは認識されません。代わりにquery.setMaxResults
メソッドを使用できます:
sm = em.createQuery("select m from MasterScrip m where m.type = :type
order by m.totalTradedVolume")
.setParameter("type", type)
.setMaxResults(2).getResultList()
Query setFirstResult and setMaxResult
メソッドで解決できます