我在Oracle中遇到以下错误:
SELECT * FROM abcd WHERE name LIKE 'a%' LIMIT 10 * ERROR at line 1: ORA-00933: sql command not properly ended
这个命令有什么问题?
解决方法
Oracle不支持limit子句.这是MysqL / Postgres的事情.
有其他选择,虽然他们往往涉及更多
http://www.oracle.com/technology/oramag/oracle/06-sep/o56asktom.html
最简单的等价物是:
select * from abcd where name like 'a%' and ROWNUM <= 10;