목록피봇테이블 (1)
데이터 분석가로 살아남기
[LeetCode] 1179. Reformat Department Table - MySQL 풀이
안녕하세요, 준브로입니다. 이번에 풀어볼 문제는 SQL 쿼리로 피봇 테이블을 연습해볼 수 있는 Leetcode의 1179. Reformat Department Table 문제를 풀어보겠습니다. 문제 설명 SQL Schema Create table If Not Exists Department (id int, revenue int, month varchar(5)) Truncate table Department insert into Department (id, revenue, month) values ('1', '8000', 'Jan') insert into Department (id, revenue, month) values ('2', '9000', 'Jan') insert into Department (i..
SQL
2023. 5. 30. 23:43