当前位置:Gxlcms > mysql > 在各种数据库中如何限制检索行数?_MySQL

在各种数据库中如何限制检索行数?_MySQL

时间:2021-07-01 10:21:17 帮助过:50人阅读

目前只知道三种数据库 实现这个功能!
mysql:select * from table limit 10
ORACLE:select * from table where rowid<10
msSQL:select top 10 from table

人气教程排行