--简单Case函数
CASE sex
WHEN '1' THEN '男'
WHEN '2' THEN '女'
ELSE '其他' END
--Case搜索函数
CASE WHEN sex = '1' THEN '男'
WHEN sex = '2' THEN '女'
ELSE '其他' END
相关文章
- 04-18SQL中的case when then else end用法
- 04-18Privacy in Pharmacogenetics: An End-to-End Case Study of Personalized Warfarin Dosing
- 04-18剑指offer 介绍一种很骚的做法 求1+2+…+n不能使用乘除法、for、while、if、else、switch、case 等关键字及条件判断语句 (A?B:C)。【简单易懂,代码可以直接运行】
- 04-18SQL的case when then else end语句的用法
- 04-18SqlServer数据库查询,条件查询CASE *** WHEN *** THEN *** ELSE '其它' END
- 04-18SQL中的case when then else end用法(数据库内容纵向变横向)
- 04-18case when else end使用
- 04-18用数组代替if-else和switch-case语句
- 04-18case when else end使用
- 04-18if...else if语句和case语句的区别