mysql學習第三天練習(流程式控制制函數)

來源:互聯網
上載者:User

標籤:資料庫版本   學習第三天   pre   coalesce   學習   code   控制   加密   相同   

-- 流程式控制制函數-- 1、查詢員工部門號,並賦予部門名select empno,ename,deptno,case deptno                                                    when 10 then ‘10部門‘                                                    when 20 then ‘20部門‘                                                    else ‘30部門‘ end from emp-- 2、判斷工資小於1000,小於4000,大於4000select empno,ename,sal,case when sal<1000 then ‘大窮鬼‘                                                        when sal<4000 then ‘中等窮鬼‘                                                        else ‘大老闆‘ endfrom emp-- 3、判斷為真select if(2>1,‘2大‘,‘1大‘)from dual-- 4、判斷為假select if(1>2,‘2大‘,‘1大‘)from dual-- 5、如果為null返回0,與coalesce()select ifnull(comm,0),coalesce(comm,0)from emp-- 6、如果兩個數相同返回空,如果不相同返回第一個參數select nullif(4,8)from dual-- 7、查詢資料庫select database()from dual-- 8、查詢資料庫版本select version()from dual-- 9、查詢使用者名稱select user()from dual-- 10、select inet_aton(‘127.0.0.1‘),inet_ntoa(‘2130706433‘)-- 11、密碼加密select password(‘kkk‘)-- 12、md5加密select md5(‘123‘),nullif(md5(‘123‘),md5(‘123‘))

 

mysql學習第三天練習(流程式控制制函數)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.