当前位置:   article > 正文

sql-update 用法_sql update

sql update

update 表示更新,要想更新数据库的某条数据,我们通常用:

update  {表名}  set  {列名}={新的值} where {条件}

以LeetCode上看到的一个简单的题目为例:

 问题1:

        将A的薪水修改为8000;

答案:

update Salary set salary where name = A;

问题2:

        交换所有的 'f' 和 'm' (即,将所有 'f' 变为 'm' ,反之亦然),仅使用 单个 update 语句 ,且不产生中间临时表。

答案:

  1. # 解法一:
  2. update Salary
  3. set sex = (
  4. case when sex='m' then 'f' else 'm' end
  5. # 如果sex='m'为真,更新为f,如果为假,则更新为'm'
  6. )
  7. # 解法二:
  8. update Salary
  9. set sex = if('m','f','m'
  10. )
  11. # 意思与解法一类似

 

声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop】
推荐阅读
相关标签
  

闽ICP备14008679号