在oracle中选择第n列时出错[重复]

Posted

技术标签:

【中文标题】在oracle中选择第n列时出错[重复]【英文标题】:get error in select the nth column in oracle [duplicate] 【发布时间】:2021-01-10 10:24:51 【问题描述】:

我试图从员工表中选择secondhighestsalary,这是我的尝试,但它返回了

SQL 语句没有正确结束

select salary as secondhighestsalary from employee 
order by salary desc
offset 1 rows
fetch next 1 rows only;

那里有什么问题?甲骨文 SQL。

提前致谢。

【问题讨论】:

试试这个:select salary as secondhighestsalary from employee WHERE rownum BETWEEN 1 and 1; order by salary desc 【参考方案1】:

据我所知,从 Oracle 12 c 开始支持这种结构 Oracle 11g OFFSET FETCH gives error

【讨论】:

以上是关于在oracle中选择第n列时出错[重复]的主要内容,如果未能解决你的问题,请参考以下文章

Oracle DataReader 在 GetDateTime 上出错

如何在 Oracle 11g 中选择前五行或“N”行 [重复]

oracle 左外连接如果右表中有重复数据如何处理?

使用默认值添加不可为空的列时的 Oracle 错误

Oracle---------sql 中取值两列中值最大的一列

在 FOR 循环中第一次选择 20 条记录并在 oracle 中再次休息时出错