任何人都可以告诉我这个Hibernate查询有什么问题吗?

时间:2017-12-01 12:57:22

标签: sql database oracle hibernate hql

以下是我的询问:

select c from (select t.*, rownum as rownum_ from t) c 
where rownum_ between :firstResult and :maxResults

此处:firstResult:maxResults是我传递给查询的参数。

我正在使用Oracle 11g Express Edition。

1 个答案:

答案 0 :(得分:0)

c这里是表别名,不是列别名。

尝试:

select c.* from (select t.*, rownum as rownum_ from t) c 
where rownum_ between :firstResult and :maxResults