程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> mysql中case when語句的使用示例

mysql中case when語句的使用示例

編輯:MySQL綜合教程

下面為您舉例說明了三種mysql中case when語句的使用方法,供您參考學習,如果您對mysql中case when語句使用方面感興趣的話,不妨一看。

1。

  1. select name,  
  2.  case   
  3.         when birthday<'1981' then 'old'  
  4.         when birthday>'1988' then 'yong'  
  5.         else 'ok' END YORN  
  6. from lee; 

2。

  1. select NAME,  
  2.  case name  
  3.      when 'sam' then 'yong'  
  4.         when 'lee' then 'handsome'  
  5.         else 'good' end  
  6. from lee; 

當然了case when語句還可以復合

3。

  1. select name,birthday,  
  2.  case   
  3.      when birthday>'1983' then 'yong'  
  4.         when name='lee' then 'handsome'  
  5.         else 'just so so ' end  
  6. from lee;  
  7.  

以上就是mysql中case when語句的使用示例的介紹。

MySQL設置自增字段的方法介紹

常見MySql字段的默認長度

MySQL數值數據類型的范圍

MySQL索引類型介紹

mysql添加刪除主鍵的方法

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved