sql-update 用法
update 表示更新,要想更新数据库的某条数据,我们通常用:update {表名} set {列名}={新的值} where {条件}以LeetCode上看到的一个简单的题目为例:问题1:将A的薪水修改为8000;答案:update Salary set salary where name = A;问题2:交换所有的 'f' 和 'm' (即,将所有 'f' 变为 'm' ,反之亦然),仅使用 单个 update 语句 ,...