请教一个SQL的判断
请教各位大佬,如果字段A=2,那么字段B=0,,这个SQL怎么写? update table_name set B=0 where A=2; 涨知识 发表于 2020-3-31 16:03update table_name set B=0 where A=2;
{:1_896:}我没表达清楚,是查询{:1_896:} zhangha958 发表于 2020-3-31 16:05
我没表达清楚,是查询
没明白,这是什么要求 ? sql语句中使用case..when ..具体用法自己查一下 就类似这样的selectcase when a=2then b=0else XXX end as result from table{:1_926:} 什么意思? select XXX from XXX where A="xx" and B="xx" select '线路故障' where A='2' and B='0' SELECT A,CASE WHEN A=2 THEN 0 ELSE B END B FROM XXX
页:
[1]
2