修改表中数据:update/replace
(1)update 表名 set 字段名=值 [where条件]
(2)update 表名 set 字段名=replace(字段名,旧值,新值) [where 条件]
(3)update 表名 set 字段名=值 [where条件] == select * from 表名 for update
(直接改表中的数据) == (找到表,然后解锁表,直接在表中执行更新)
标签:set,SQL,update,replace,学习,表名,where,字段名 From: https://www.cnblogs.com/zzy-0039/p/17785528.html