码迷,mamicode.com
首页 > 数据库 > 详细

sql -- 利用order by 排名作弊

时间:2019-07-12 11:14:30      阅读:110      评论:0      收藏:0      [点我收藏+]

标签:union   des   style   select   方法   order   sele   not   from   

表结构:

技术图片

需求:

技术图片

方法1:union

select * from (select *  from user_level where id in (2,4,6) order by user_total desc ) a
union
(select * from (select *  from user_level where id not in (2,4,6) order by user_total desc ) b)

方法2:直接在order by加

select * from user_level order by id in (2,4,6) desc,user_total desc ;

技术图片

sql -- 利用order by 排名作弊

标签:union   des   style   select   方法   order   sele   not   from   

原文地址:https://www.cnblogs.com/8013-cmf/p/11174800.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!