I got the following error in Oracle:

SELECT * FROM abcd WHERE name LIKE 'a%' LIMIT 10
                                        *
ERROR at line 1:
ORA-00933: SQL command not properly ended

What is the problem with the command?

link|improve this question

4% accept rate
feedback

1 Answer

Oracle doesn't support the limit clause. That's a MySQL/Postgres thing.

There are alternatives, although they're often a lot more involved

http://www.oracle.com/technology/oramag/oracle/06-sep/o56asktom.html

The simplest equivalent is:

select * from abcd where name like 'a%' and ROWNUM <= 10;
link|improve this answer
then i want to limit the keywords to 10 for a specific search what should i do – murali Mar 1 '10 at 8:49
2  
Please be careful when limiting query results using <rownum in combination with an order by clause. You may not get the results you expect. Oracle first limits the number of rows and then does the sort. – Rene Mar 1 '10 at 10:57
1  
@Rene: Indeed, it can bite you. In this case, though, it doesn't seem to matter. – skaffman Mar 1 '10 at 11:59
LIMIT is supported on MySQL and Postgres – OMG Ponies Mar 1 '10 at 15:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.