1.修改单表的记录
语法:
update 表名
set 列=新值,列=新值,。。。
where 筛选条件;
update beauty set
phone='15745646541'
where
id=13;
2、修改多表的记录
92语法:
update 表1 别名,表2 别名
set 列=值,。。。
where 连接条件
and 筛选条件
99语法
update 表1 别名
inner|left|right join
表2 别名
on
连接条件
set 列=值,。。。
where 筛选条件
UPDATE
beauty b
join
boys bo
on
bo.id = b.boyfriend_id
set
phone = '114'
where
boyName = '张无忌';
update
boys bo
right join
beauty b
on
bo.id = b.boyfriend_id
set
b.boyfriend_id=2
where
bo.id is null;