SQL语句练习三
卡二条的技术圈
共 1174字,需浏览 3分钟
·
2021-08-03 17:54
题目描述
给定一个 salary 表,如下所示,有 m = 男性 和 f = 女性 的值。交换所有的 f 和 m 值(例如,将所有 f 值更改为 m,反之亦然)。要求只使用一个更新(Update)语句,并且没有中间的临时表。
注意,您必只能写一个 Update 语句,请不要编写任何 Select 语句。
例如:
| id | name | sex | salary |
|----|------|-----|--------|
| 1 | A | m | 2500 |
| 2 | B | f | 1500 |
| 3 | C | m | 5500 |
| 4 | D | f | 500 |
运行你所编写的更新语句之后,将会得到以下表:
| id | name | sex | salary |
|----|------|-----|--------|
| 1 | A | f | 2500 |
| 2 | B | m | 1500 |
| 3 | C | f | 5500 |
| 4 | D | m | 500 |
解题思路
此题是一个考察 sql 语句的试题,特别需要注意的是题目要求,不能是用 select、临时表、多条 sql 语句等情况。这就考察对 sql 语句的灵活运用。
解题方法
1.解题方式一:使用 case when 语法
// case when 语法
update tableName set colnum = caseVal
WHEN 情况一 THEN 返回值一
WHEN 情况二 THEN 返回值二
ELSE 返回值
END
此方法比较推荐使用在多种条件,每种条件的修改值且不同时。
update salary set sex = case sex
when 'm' then 'f'
when 'f' then 'm'
else 'noknow'
end
2.解题方式二:使用 if 表达式 if (expre, true, false)
update salary set sex = if (sex = 'm', 'f', 'm')
3.解题方式三:使用 replace(str, search_str_content, replace_value)
update salary set sex = replace('mf', sex, '') where sex != '';
评论