Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 버블정렬
- 프로그래머스
- 재귀함수
- Array.asList
- 코드스테이츠
- 알고리즘
- 구간합구하기
- 재귀와반복문
- 백준 11659
- 11659
- 싱글톤패턴
- MySQL
- Spring MVC 구성요소
- 코드스테이츠 백엔드
- Spring MVC 동작원리
- Spring Web MVC
- 클라우드에서 도커 실행하기
- 코딩테스트
- OOP
- List.of
- 인텔리제이
- 자바
- String.valueOf()
- vm인스턴스생성
- 투포인터알고리즘
- 스택
- GCP
- java
- 성능테스트툴
- 백준
Archives
- Today
- Total
순간을 기록으로
[LeetCode] Rearrange Products Table 본문
문제
풀이
select구에 문자열을 입력해서 속성 값을 설정할 수 있는 것이 포인트였던 문제.
1
2
3
4
5
6
7
8
9
10
11
12
13
|
select product_id, 'store1' as store, store1 as price
from products
where store1 is not null
union
select product_id, 'store2' as store, store2 as price
from products
where store2 is not null
union
select product_id, 'store3' as store, store3 as price
from products
where store3 is not null;
|
cs |
'Problem Solving' 카테고리의 다른 글
[LeetCode] Tree Node (0) | 2022.11.08 |
---|---|
[LeetCode] Employees With Missing Information (0) | 2022.11.08 |
[LeetCode] Two Sum (0) | 2022.11.07 |
[LeetCode] Patients With a Condition (0) | 2022.11.07 |
[LeetCode] Group Sold Products By The Date (0) | 2022.11.07 |
Comments