当前位置: 代码迷 >> Oracle开发 >> 为何下面语句提示FROM keyword not found where expected
  详细解决方案

为何下面语句提示FROM keyword not found where expected

热度:343   发布时间:2016-04-24 06:28:14.0
为什么下面语句提示FROM keyword not found where expected
你好

下面语句加了 top 100 就提示下面的错误.
select top 100 * from table order by date desc;

00923. 00000 -  "FROM keyword not found where expected"
------解决思路----------------------
关键字加双引号
------解决思路----------------------

-- oracle 的语法中,没有  top N 这个说法

select * from mytable where rownum <= 100 
  相关解决方案