I want to know the alternative of the TOP keyword as in MySQL. I have read about TOP in SQL Server.
Is there any alternative to this in MySQL, or any other method i
Ordering and limiting the results:
SELECT field1, field2 FROM myTable ORDER BY field1 ASC LIMIT 10