SQL(and ? ,?)

SQL(and ? ,?)

  1. 语句一
 update carts set  total_amount = ? , total_count = ? where id = ?
  1. 语句二
update carts set  total_amount = ? and total_count = ? where id = ?

语句一为正确的语句,

那么语句二会报错吗?

答案是,并没有报错,但是,执行无法达到预期total_amount会变为 0 。

上一篇:2020-12-08


下一篇:#力扣 LeetCode829. 连续整数求和 @FDDLC