热门标签
更多>
搜索结果
查询Tags标签: 43210,共有 2条记录-
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=张三; 并没有达到…
2021/11/9 19:44:22 人评论 次浏览 -
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=张三; 并没有达到…
2021/11/9 19:44:22 人评论 次浏览