首页 > 开发 > 综合 > 正文

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

2024-07-21 02:30:39
字体:
来源:转载
供稿:网友
目前只知道三种数据库 实现这个功能!
MySQL:select * from table limit 10
Oracle:select * from table where rowid<10
msSQL:select top 10 from table


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表