赞
踩
update用于更新表中内容
1.修改单表
update 表名
set 列名 = 新值,.....
where 筛选条件;
2.修改多表
update 表1
inner|left|right join 表2
on 连接条件
set 列名 = 新值,.....
where 筛选条件;
给定一个 salary 表,如下所示,有 m = 男性 和 f = 女性 的值。交换所有的 f 和 m 值(例如,将所有 f 值更改为 m,反之亦然)。要求只使用一个更新(Update)语句,并且没有中间的临时表。
注意,您必只能写一个 Update 语句,请不要编写任何 Select 语句。
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/swap-salary
解法1 :
- # Write your MySQL query statement below
- update salary
- set sex=if(sex='f','m','f');
解法2:
- # Write your MySQL query statement below
- update salary
- set sex= case sex
- when 'f' then 'm'
- else 'f'
- end;
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。