提取數據庫部分數據
MSSQL: select top 3 * from article
MySQL: select * from article limit 3
Oracle: select * from article where rownum <=3
PGSQL: select top 3 * from article
MySQL: select * from article limit 3
Oracle: select * from article where rownum <=3
PGSQL: select top 3 * from article