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

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='张三';

标签:name,张三,number,UPDATE,43210,字段,李四,student,MySQL
来源: https://blog.csdn.net/yigeshaoziwei/article/details/121224253