瀏覽代碼

Another one bites the dust.

master
Lachlan Jacob 5 年之前
父節點
當前提交
2a5ec1ae3a
共有 3 個文件被更改,包括 28 次插入0 次删除
  1. 1
    0
      627/main.sql
  2. 24
    0
      627/problem.txt
  3. 3
    0
      627/run.sh

+ 1
- 0
627/main.sql 查看文件

@@ -0,0 +1 @@
UPDATE salary SET sex = IF (sex = 'm', 'f', 'm');

+ 24
- 0
627/problem.txt 查看文件

@@ -0,0 +1,24 @@
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 statement and no intermediate temp table.

Note that you must write a single update statement, DO NOT write any select statement for this problem.


Example:

| id | name | sex | salary |
|----|------|-----|--------|
| 1 | A | m | 2500 |
| 2 | B | f | 1500 |
| 3 | C | m | 5500 |
| 4 | D | f | 500 |

After running your update statement, the above salary table should have the following rows:

| id | name | sex | salary |
|----|------|-----|--------|
| 1 | A | f | 2500 |
| 2 | B | m | 1500 |
| 3 | C | f | 5500 |
| 4 | D | m | 500 |


+ 3
- 0
627/run.sh 查看文件

@@ -0,0 +1,3 @@
#!/bin/bash

echo "Can't be botherd making this into a test"

Loading…
取消
儲存