各資料庫取前x行

miguelmin發表於2009-02-16

Oracle
select * from table where rownum < x;

db2
select * from table fetch first x rows only;

teradata
select top x * from table;

sql server
select top x * from table;

[@more@]

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/16723161/viewspace-1017422/,如需轉載,請註明出處,否則將追究法律責任。

相關文章