你好
下面语句加了 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