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
- Class
- database
- array
- 구현
- simulation
- string
- hash table
- Counting
- 파이썬
- greedy
- java
- Stack
- 자바
- two pointers
- Binary Tree
- 코딩테스트
- Binary Search
- Number Theory
- dynamic programming
- Matrix
- Method
- 코테
- Data Structure
- implement
- Math
- SQL
- bit manipulation
- Tree
- sorting
- geometry
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 1873. Calculate Special Bonus 본문
1. Input
1) Table: Employees (pk: employee_id)
2. Output
1) 각 id에 대하여 받는 보너스를 출력
- 보너스는 연봉의 100%이다.
- 보너스를 받는 조건은 id가 홀수이면서 이름이 M으로 시작하지 않아야 한다.
- 보너스를 받지 못하면 보너스에 0을 출력
- id를 기준으로 오름차순으로 정렬한다.
3. Example
4. Code
1) 첫 코드(2023/04/22)
select employee_id, case when mod(employee_id,2)=1 and name not like 'M%' then salary
else 0 end as bonus
from Employees
order by employee_id;
'코딩테스트 풀이 > SQL' 카테고리의 다른 글
[LeetCode/Easy] 1978. Employees Whose Manager Left the Company (0) | 2023.04.24 |
---|---|
[LeetCode/Easy] 1890. The Latest Login in 2020 (0) | 2023.04.24 |
[LeetCode/Easy] 1757. Recyclable and Low Fat Products (0) | 2023.04.17 |
[LeetCode/Easy] 1741. Find Total Time Spent by Each Employee (0) | 2023.04.17 |
[LeetCode/Easy] 1693. Daily Leads and Partners (0) | 2023.04.15 |