JPQL for select from select row_number() over()

前端 未结 2 1373
借酒劲吻你
借酒劲吻你 2021-01-19 02:02

I\'m using Db2 on AS/400, and I am trying to execute a JPQL query that will return results from row x to row y.

In SQL this works:

select cur.* from          


        
2条回答
  •  渐次进展
    2021-01-19 02:06

    That cannot be done. JPQL operates to entities and entities are mapped to tables in database. Row number in db2 is concept in result set, not in database table.

提交回复
热议问题