dsjzmrz78089 2017-08-08 02:45
浏览 108
已采纳

SQL:首先选择并排序与特定ID和特定类型匹配的行

I have the following table:

id name type
-- ---- -----
1  Joe  H
1  Zoe  F
2  Ken  F
2  Ben  H
3  Lime H
4  Fine F
5  Lima F
5  Sima H

I want to select first the rows that match:

id: 5 & type: H

id: 2 & type: F

id: 3 & type: H

And after them the rest ordered by id ASC.

So the final result should be:

id name type
-- ---- -----
5  Sima H
2  Ken  F
3  Lime H
1  Joe  H
1  Zoe  F
2  Ben  H
4  Fine F
5  Lima F

I just couldn't find how to show first specific rows sorted by more than one value. I use PHP and MySqli if that helps.

Thanks

  • 写回答

2条回答 默认 最新

  • dqypcghd381390 2017-08-08 06:23
    关注

    You can order with a case statement:

    select * from table
    order by
        case 
            when id = 5 and type = 'H' then 0
            when id = 2 and type = 'F' then 1
            when id = 3 and type = 'H' then 2
            else 3
        end, id, name
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 R语言卸载之后无法重装,显示电脑存在下载某些较大二进制文件行为,怎么办
  • ¥15 java 的protected权限 ,问题在注释里