我的 sql 查询是
Select SUM(case when value1 =351 then 1 else 0 end) as value2 from table1
如果 value1 =351,输出将为 1。
是否可以将查询编写为
Select SUM(case when value1 =351 then Y else N end) as value2 from table1
得到输出为 Y 还是 N?
我的 sql 查询是
Select SUM(case when value1 =351 then 1 else 0 end) as value2 from table1
如果 value1 =351,输出将为 1。
是否可以将查询编写为
Select SUM(case when value1 =351 then Y else N end) as value2 from table1
得到输出为 Y 还是 N?