我想知道如何使用JQL语言修复行的查询结果,比如SQL中的“LIMIT”?
答案 0 :(得分:0)
使用JPA时,不要在查询字符串中指定此项,而是使用Query
在查询字符串中创建的setMaxResults
对象上指定:
TypedQuery<Student> query = em.createQuery("select s from Student s", Student.class);
query.setMaxResults(30);
List<Student> first30Students = query.getResultList();