MySQL中UPDATE语句,如果要更新多个字段,字段间不能使用“AND”,而应该用逗号分隔。

1、使用sql语句更新多个字段时:

update apps set student_number='43210' and student_name='李四' where student_number='13245' and student_name='张三';

执行之前:student_number='13245' and student_name='张三';

执行之后:student_number='0' and student_name='张三';

并没有达到我们的效果

2、换成逗号隔开测试:

update apps set student_number='43210' ,student_name='李四' where student_number='13245' and student_name='张三';

 执行之后:student_number='43210' and student_name='李四';

3、分析:

        使用and连接修改的属性,sql会将语句解析为

update apps set student_number=('43210' and student_name='李四') where student_number='13245' and student_name='张三';

         而student_name='李四' 为false,false解析为0

        所以使用and连接属性的结果为:student_number='0' and student_name='张三';

上一篇:第八章、Python数据类型(set集合)


下一篇:mysql 批量更新 update foreach