mysql_DML_update

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='张晓东'

posted @ 2016-09-22 14:47  D.零下的小书屋  阅读(127)  评论(0编辑  收藏  举报