修改单表记录☆
语法:
update 表名
set 列=新值,列=新值,....
where 筛选条件
修改多表记录
92语法
update 表1 别名 ,表2 别名
set 列=值,...
where 连接条件
and 筛选条件
99语法:
update 表1 别名
inner/left/right join 表2 别名
on 连接条件
set 列=值,...
where 筛选条件
2021-07-10 01:38:00
修改单表记录☆
语法:
update 表名
set 列=新值,列=新值,....
where 筛选条件
修改多表记录
92语法
update 表1 别名 ,表2 别名
set 列=值,...
where 连接条件
and 筛选条件
99语法:
update 表1 别名
inner/left/right join 表2 别名
on 连接条件
set 列=值,...
where 筛选条件