SQL Server中用Case When Then多条件判断sql
程序员文章站
2022-06-01 16:47:41
...
两种实现多条件判断的case when 方法
// An highlighted block
select (case when 条件 and 条件 then 0 when 条件 and 条件 then 1 else 2 end) as name from table
select count = (case when 条件 and 条件 then 0 when 条件 and 条件 then 1 else 2 end) from table
SQLServer2005 CASE WHEN的两种用法
第一种:普通的CASE 函数
case sex
when ‘1’ then ‘数字1’
when ‘2’ then ‘数字2’
else ‘不是1也不是2’
end as num
第二种:CASE 搜索函数
case
when sex=‘1’ then ‘数字1’
when sex=‘2’ then ‘数字2’
else ‘不是1也不是2’
end as num
上一篇: win10计算器怎么进行体积转换?
推荐阅读
-
SQL利用Case When Then多条件判断
-
sql语句case when then else end 返回一个符合条件的值
-
SQL Server中使用判断语句(IF ELSE/CASE WHEN )案例
-
SQL COUNT +Case When Then+IFNULL多条件判断实现多条件复杂统计
-
【sql】条件判断(if,case when)
-
SQL Server中用Case When Then多条件判断sql
-
SQL 存储中if、else判断、case...when..then..else.....end
-
SQL Case When Then Else End 多条件判断
-
SQL利用Case When Then多条件判断SQL 语句
-
SQL Server和Access中的条件判断语法(case when和iff)