sqlserver数据库中,查询前10行数据是 top
select top 10 * from 表名
在oracle数据库中,查询前10行数据是 rownum
select * from 表名 where rownum <=10
在mpp数据库中,查询前10行数据是 limit
select * from 表名 where limit=10