這篇文章主要介紹mysql中if else多條件的使用示例,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
企業(yè)建站必須是能夠以充分展現(xiàn)企業(yè)形象為主要目的,是企業(yè)文化與產(chǎn)品對(duì)外擴(kuò)展宣傳的重要窗口,一個(gè)合格的網(wǎng)站不僅僅能為公司帶來(lái)巨大的互聯(lián)網(wǎng)上的收集和信息發(fā)布平臺(tái),創(chuàng)新互聯(lián)面向各種領(lǐng)域:柔性防護(hù)網(wǎng)等成都網(wǎng)站設(shè)計(jì)、全網(wǎng)整合營(yíng)銷推廣解決方案、網(wǎng)站設(shè)計(jì)等建站排名服務(wù)。一、 編寫(xiě)一條update語(yǔ)句實(shí)現(xiàn)商品漲價(jià),具體規(guī)則如下
1、99元以內(nèi),提價(jià)20%
2、100-999元之間,提價(jià)10%
3、1000-1999之間,提價(jià)5%
4、其他提價(jià)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;
二、 編寫(xiě)一條select語(yǔ)句,實(shí)現(xiàn)如下效果
學(xué)號(hào) 姓名 分?jǐn)?shù) 等級(jí) ------------------------------------------------- 1 張三 86 良好 2 李四 98 優(yōu)秀 3 王五 72 及格 4 那六 69 及格 5 小幺 56 不及格
規(guī)則如下:
1、>=90:優(yōu)秀
2、>=80:良好
3、>=60:及格
4、<60:不及格
select id as 學(xué)號(hào), name as 姓名, score as 分?jǐn)?shù), ( case when score >= 90 then '優(yōu)秀' when score >= 80 and score < 90 then '良好' when score >= 60 and score < 80 then '及格' when score < 60 then '不及格' end ) as 等級(jí) from scores;
以上是“mysql中if else多條件的使用示例”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)網(wǎng)站制作公司行業(yè)資訊頻道!