update 表名 set 字段=XX
where....;(记得加条件不安全改了)
多个字段:
update 表名 set 字段1=XX,字段2=
where....;(记得加条件不安全改了)
修改多个表的数据:
update stu ,score
set stu.age=18 ,score.grade=1000
where stu.stu_id=score.st_id and stu.stu_name='张晓东'
2022-10-21 17:34:36
update 表名 set 字段=XX
where....;(记得加条件不安全改了)
多个字段:
update 表名 set 字段1=XX,字段2=
where....;(记得加条件不安全改了)
修改多个表的数据:
update stu ,score
set stu.age=18 ,score.grade=1000
where stu.stu_id=score.st_id and stu.stu_name='张晓东'