-- Mysqlselect * from 表 order by 字段 limit 0,5;-- OracleSELECT * FROM 表 WHERE ROWNUM <= 5 ORDER BY 字段 ;-- Server SQLselect top 5 * from 表 order by 字段;