MySql取前十条记录
select t.* from tableName t where limit 10
或
select t.* from tableName t where limit 0 to 1
sql server 取前十条记录
select top 10 t.* from tableName t
oracle取前十条记录
select rownum,t.* from tableName t where num <=10