LeetCode 627. Swap Salary (交换工资)】的更多相关文章

题目标签: 题目给了我们一个 工资表格,让我们把 男女性别对换. 这里可以利用IF, IF(condition, value_if_true, value_if_false). Java Solution: Runtime:  135 ms, faster than 94.04% Memory Usage: N/A 完成日期:07/02/2019 关键点:IF(condition, value_if_true, value_if_false) # Write your MySQL query s…
Given a table salary, such as the one below, that has m=male and f=female values. Swap all f and m values (i.e., change all f values to m and vice versa) with a single update query and no intermediate temp table. For example: | id | name | sex | sala…
https://leetcode.com/problems/swap-salary/description/ 用  set keyWord = Case depentedWord when haha then baba else lala end 最后需要end # Write your MySQL query statement below update salary set sex = case sex when 'm' then 'f' else 'm' end;…
627. Swap Salary SQL Schema Given a table salary, such as the one below, that has m=male and f=female values. Swap all f and m values (i.e., change all f values to m and vice versa) with a single update query and no intermediate temp table. For examp…
Given a table salary, such as the one below, that has m=male and f=female values. Swap all f and m values (i.e., change all f values to m and vice versa) with a single update query and no intermediate temp table. For example: | id | name | sex | sala…
MySQL的IF既可以作为表达式用,也可在存储过程中作为流程控制语句使用,如下是做为表达式使用: IF表达式 IF(expr1,expr2,expr3) 如果 expr1 是TRUE (expr1 <> 0 and expr1 <> NULL),则 IF()的返回值为expr2; 否则返回值则为 expr3.IF() 的返回值为数字值或字符串值,具体情况视其所在语境而定. SELECT IF(sva=1,"男","女") AS s FROM…
case具有两种格式:简单case函数和case搜索函数. --简单case函数 case sex when ' then '男' when ' then '女’ else '其他' end --case搜索函数 ' then '男' when sex = ' then '女' else '其他' end leetcode交换工资: 给定一个 salary表,如下所示,有m=男性 和 f=女性的值 .交换所有的 f 和 m 值(例如,将所有 f 值更改为 m,反之亦然).要求使用一个更新查询,并…
swap 内存交换空间的概念 swap使用上的限制…
SQL架构 create table ), sex ), salary int) Truncate table salary insert into salary (id, name, sex, salary) values (') insert into salary (id, name, sex, salary) values (') insert into salary (id, name, sex, salary) values (') insert into salary (id, n…
题目链接:https://leetcode-cn.com/problems/swap-salary/ 题目 给定一个 salary 表,如下所示,有 m = 男性 和 f = 女性 的值.交换所有的 f 和 m 值(例如,将所有 f 值更改为 m,反之亦然).要求只使用一个更新(Update)语句,并且没有中间的临时表. 注意,您必只能写一个 Update 语句,请不要编写任何 Select 语句. 例如: id name sex salary 1 A m 2500 2 B f 1500 3 C…