在各种数据库中如何限制检索行数?
程序员文章站
2022-03-30 08:53:32
...
目前只知道三种数据库 实现这个功能!
mysql:select * from table limit 10
ORACLE:select * from table where rowidmsSQL:select top 10 from table
mysql:select * from table limit 10
ORACLE:select * from table where rowidmsSQL:select top 10 from table