SQLServer: select top 10 from table;

Oracle: select * from table where rownum<=10;

MySql: select * from table limit 10.