SQL/문제풀이

[LeetCode] Swap Salary

응엉잉 2024. 2. 15. 23:12

https://leetcode.com/problems/swap-salary/description/

 

LeetCode - The World's Leading Online Programming Learning Platform

Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview.

leetcode.com

sex column의 모든 m을 f로, f를 모두 m으로 바꿔줘야 하는 문제이다.

즉, 데이터를 바꿔줘야하는 문제이므로 UPDATE 문을 사용해야 하는데

조건에 따라 데이터를 바꿔주는 방식이 다르므로 CASE문과 결합해서 샤용해야 한다.

UPDATE Salary -- update하고싶은 column명
CASE WHEN sex = 'm' THEN 'f' -- column 바꿔주는 조건
	ELSE 'm'
    END

'SQL > 문제풀이' 카테고리의 다른 글

[LeetCode] Department Highest Salary  (0) 2024.02.18
[HakcerRank] Top Earners  (0) 2024.02.16
[HackerRank] Symmetric Pairs 📌  (0) 2024.02.14
[leetcode] Reformat Department Table 📌  (0) 2024.02.14
[HakcerRank] Type of Triangle  (0) 2024.02.14