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
- 문자열
- 삼각형의 완성조건
- SWEA
- Queue
- 프로그래머스 자바
- 백준
- 클라이언트
- 오름차순 정렬
- index of
- 백준 N과 M 자바
- Stack
- lv0
- 버퍼
- 프로그래머스 문자열 정렬
- 알고리즘
- 프로그래머스
- 스프링부트 도커
- 이진수 변환
- java
- COS Pro
- 자바
- 스택
- Programmers
- lv2
- 스프링부트 도커로 배포
- 프로그래머스 풀이
- 큐
- StringTokenizer
- Lv1
- 스프링부트 도커 배포
Archives
- Today
- Total
목록The Report 오라클 풀이 (1)
mun dev
[HackerRank] The Report 오라클 풀이
문제링크 The Report | HackerRank Write a query to generate a report containing three columns: Name, Grade and Mark. www.hackerrank.com 풀이 1. case when grade가 8보다 작다면 null로 처리 2. student의 mark를 기준으로 조인 3. marks가 8보다 큰 경우이므로 where절에 조건 추가 4. order by를 사용해 학년별 내림차순, 이름 오름차순, 점수 내림차순 코드 select case when g.grade < 8 then null else s.name end, g.grade, s.marks from students s join grades g on s.marks betw..
알고리즘/HackerRank
2024. 1. 31. 16:39