mysql对查询到的结果做计算
发布网友
发布时间:2022-05-06 09:41
我来回答
共3个回答
热心网友
时间:2022-05-06 11:11
--这是把表zxerp_customer_bis 的所有行的dhxje都加上100
update zxerp_customer_bis set dhxje = dhxje + 100
--这是符合条件的才加
update zxerp_customer_bis set dhxje = dhxje + 100
where bis_short_more=1000001
热心网友
时间:2022-05-06 12:29
你把100写到括号外面
热心网友
时间:2022-05-06 14:03
--这是把表zxerp_customer_bis 的所有行的dhxje都加上100
update zxerp_customer_bis set dhxje = dhxje + 100
--这是符合条件的才加
update zxerp_customer_bis set dhxje = dhxje + 100
where bis_short_more=1000001