I would like to limit the amount of rows I fetch in MySQL. Can you show me how?
ex:
select top x * from table in SQL Server select * from table where ROWNUM < x in Oracle select * from table limit x in MySQL