一, 修改单表的记录
语法: update 表名 set 字段=值【where 筛选条件】
二,修改多表
update 表名 别名
inner/left/rigth join 表二
on 连接条件
set字段=值,,,,,
where 筛选条件;
本文共 178 字,大约阅读时间需要 1 分钟。
一, 修改单表的记录
语法: update 表名 set 字段=值【where 筛选条件】
二,修改多表
update 表名 别名
inner/left/rigth join 表二
on 连接条件
set字段=值,,,,,
where 筛选条件;
转载于:https://www.cnblogs.com/yue-170305/p/10716854.html