使⽤SQL中的update更新多个字段值使⽤SQL中的update更新多个字段值,set后⾯的条件要⽤逗号不能⽤and
set后⾯的多个条件之间没有关联也不可以有关联,所以就不能⽤and了;where 条件后⾯可以为and
如:
update table set sex= '男', name='张三' where id = 1 ;          正确
update table set sex= '男' and name='张三' where id = 1 ;    错误
sql中update什么意思修改字段值为当前时间
update table set time1=now(),time2=now();

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。