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;
来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/16723161/viewspace-1017422/,如需转载,请注明出处,否则将追究法律责任。
转载于:http://blog.itpub.net/16723161/viewspace-1017422/

被折叠的 条评论
为什么被折叠?



