소스 검색

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…
취소
저장