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
- implement
- 자바
- SQL
- Method
- 코테
- Number Theory
- Math
- Binary Tree
- Tree
- Matrix
- Counting
- database
- 파이썬
- string
- Data Structure
- two pointers
- Class
- bit manipulation
- dynamic programming
- Stack
- 구현
- Binary Search
- java
- array
- sorting
- geometry
- greedy
- 코딩테스트
- hash table
- simulation
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 1741. Find Total Time Spent by Each Employee 본문
1. Input
1) Table: Employees (pk: (emp_id, event_day, in_time))
2. Output
1) 날짜 별로 emp_id가 일한 시간을 출력
- 일한 시간: out_time - in_time
- 출력 순서는 상관 없다.
3. Example
4. Code
1) 첫 코드(2023/04/17)
select event_day as day, emp_id, total_time
from (
select event_day, emp_id, sum(out_time-in_time) as total_time
from Employees
group by event_day, emp_id
) e;
'코딩테스트 풀이 > SQL' 카테고리의 다른 글
[LeetCode/Easy] 1873. Calculate Special Bonus (0) | 2023.04.22 |
---|---|
[LeetCode/Easy] 1757. Recyclable and Low Fat Products (0) | 2023.04.17 |
[LeetCode/Easy] 1693. Daily Leads and Partners (0) | 2023.04.15 |
[LeetCode/Easy] 1683. Invalid Tweets (0) | 2023.04.15 |
[LeetCode/Easy] 1378. Replace Employee ID With The Unique Identifier (0) | 2023.04.11 |