Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在 Hibernate 中为原生 Sql Query 实现分页。我Query query = Session.createSQlQuery(Sql_Query);用于执行查询。如何在其中实现/添加分页?
Query query = Session.createSQlQuery(Sql_Query);
AFAIK 没有默认方法,如果您使用本机 sql,则在查询中使用limitandoffset来实现相同的目的。
limit
offset
对于您在评论中的查询:
我对 MS SQL 不是很熟悉,但我发现这些页面可以帮助您开始:
相当于 SQL Server 的 LIMIT 和 OFFSET?
如何在 SQL Server 2005 中使用 LIMIT [X] OFFSET [Y]