Oracle unterstützt das limit nicht Klausel. Das ist eine MySQL/Postgres-Sache.
Es gibt Alternativen, obwohl sie oft viel aufwendiger sind
https://www.oracle.com/technology/oramag /oracle/06-sep/o56asktom.html
Das einfachste Äquivalent ist:
select * from abcd where name like 'a%' and ROWNUM <= 10;