下面為您舉例說明了三種mysql中case when語句的使用方法,供您參考學習,如果您對mysql中case when語句使用方面感興趣的話,不妨一看。
1。
- select name,
- case
- when birthday<'1981' then 'old'
- when birthday>'1988' then 'yong'
- else 'ok' END YORN
- from lee;
2。
- select NAME,
- case name
- when 'sam' then 'yong'
- when 'lee' then 'handsome'
- else 'good' end
- from lee;
當然了case when語句還可以復合
3。
- select name,birthday,
- case
- when birthday>'1983' then 'yong'
- when name='lee' then 'handsome'
- else 'just so so ' end
- from lee;
以上就是mysql中case when語句的使用示例的介紹。
MySQL設置自增字段的方法介紹
常見MySql字段的默認長度
MySQL數值數據類型的范圍
MySQL索引類型介紹
mysql添加刪除主鍵的方法