首页 > 开发 > 综合 > 正文

查询数据库中的N条记录,然后,对这N条记录排序

2024-07-21 02:06:40
字体:
来源:转载
供稿:网友

看到这个主题,有些人,都会写出这个一句来,
select top 10 * from tablename order by createtime
这条语句的意思正好和主题相反

正确答案1: 
select top 10 * from tablename where id in(select top 10 id from tablename order by id) order by createtime
这条语句,就可以找出表中的前10条的记录,然后以createtime时间排序
要求是表中需要有一个主键

,欢迎访问网页设计爱好者web开发。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表