zoukankan      html  css  js  c++  java
  • mysql case when then end学习

    表 vtiger_acctive,字段 id,name.

    1. 查询中使用

      # 查询如果name的值为 hello1 时输出 6666,当值为 hello2 时,输出 333333
      select case name when 'hello1' then '6666'   when 'hello2' then '333333'   else name
      end   from vtiger_acctive
         # 查询如果name的值为 hello 时输出 6666,否则输出 333333
      select case when name='hello' then '6666' else '55555' end   from vtiger_acctiv
    今天找到了一个不错的案例:
    
    一张学生成绩表(tb_student)
    FName FCores FScores
    小明 语文 90
    小明 数学 92
    小明 英语 89
    小红 语文 91
    小红 数学 92
    小红 英语 80
    要求,写出合理的sql语句,得到下面的结果
    姓名 语文 数学 英语 
    小明 90 92 89
    小红 91 92 80
    
    答案:
    (select FName,
    MAX(case FCores when '语文' then FScores else 0 end) as '语文',
    MAX(case FCores when '数学' then FScores else 0 end) as '数学',
    MAX(case FCores when '英语' then FScores else 0 end) as '英语'
    from tb_student group by FName)

    其实这个就是行转列的一种。

      

    2. update中使用

    # 当name等于hello时,改为1,当name等于sdfasdfa时,改为2. 否则不变
    update
    vtiger_acctive set name= case when name='hello' then '1' when name='sdfasdfa' then '2' else name end
  • 相关阅读:
    linux下开启防火墙,允许通过的端口
    linux下限定连接ip和端口
    centos7关闭防火墙
    linux下清空文件内容的3个命令
    yum安装软件包提示Error Downloading Packages解决方法
    Zabbix 监控服务介绍
    Redis 应用
    分布式中间件MyCat 使用
    DevOps Gitlab环境部署
    MySQL Atlas 读写分离软件介绍
  • 原文地址:https://www.cnblogs.com/shaoshao/p/5603707.html
Copyright © 2011-2022 走看看