首頁  >  文章  >  資料庫  >  mysql if else 多重條件

mysql if else 多重條件

(*-*)浩
(*-*)浩原創
2019-05-17 19:00:4628892瀏覽

MySQL 如何利用一語句實作類似if-else條件語句的判斷

mysql if else 多重條件

#一、 寫一update語句實作商品漲價,具體規則如下

1、99元以內,漲價20%

2、100-999元之間,漲價10%

3、1000-1999之間,提價5%

4、其他提價2%

update goods  
set price = (  
case   
  when price between 0 and 99 then price * 1.2  
  when price between 100 and 999 then price * 1.1  
  when price between 1000 and 1999 then price * 1.05  
  when price > 1999 then price * 1.02  
end);  
select * from goods;

#二、 寫一select語句,實現如下效果

 学号   姓名 分数 等级
-------------------------------------------------
 1       张三   86   良好
 2       李四   98   优秀
 3       王五   72   及格
 4       那六   69   及格
 5       小幺   56   不及格

#如下:

1、>=90:優

2、>=80:良好

#3、>=60:及格

########################################################################################### 4、<60:不及格###
select id as 学号, name as 姓名, score as 分数,   
(  
  case   
    when score >= 90 then '优秀'  
    when score >= 80 and score < 90 then '良好'  
    when score >= 60 and score < 80 then '及格'  
    when score < 60 then '不及格'  
  end  
)  
as 等级  
from scores;

以上是mysql if else 多重條件的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
上一篇:mysql group多列下一篇:mysql group多列