在各种数据库中如何限制检索行数?
点击次数:16 次 发布日期:2008-11-27 18:53:55 作者:源代码网
|
mysql:select * from table limit 10 ORACLE:select * from table where rowid<10 msSQL:select top 10 from table 源代码网供稿. |
|
mysql:select * from table limit 10 ORACLE:select * from table where rowid<10 msSQL:select top 10 from table 源代码网供稿. |