1.修改单表的记录

语法:

update 表名
set 列=新值,列=新值,。。。
where 筛选条件;

  1. update beauty set
  2. phone='15745646541'
  3. where
  4. id=13;

2、修改多表的记录

92语法:

update 表1 别名,表2 别名
set 列=值,。。。
where 连接条件
and 筛选条件

99语法

update 表1 别名
inner|left|right join
表2 别名
on
连接条件
set 列=值,。。。
where 筛选条件

  1. UPDATE
  2. beauty b
  3. join
  4. boys bo
  5. on
  6. bo.id = b.boyfriend_id
  7. set
  8. phone = '114'
  9. where
  10. boyName = '张无忌';
  1. update
  2. boys bo
  3. right join
  4. beauty b
  5. on
  6. bo.id = b.boyfriend_id
  7. set
  8. b.boyfriend_id=2
  9. where
  10. bo.id is null;