Skip to content

Commit b4e280e

Browse files
committed
[level 1] Title: 평균 일일 대여 요금 구하기, Time: , Memory: undefined -BaekjoonHub
1 parent eb90c2d commit b4e280e

2 files changed

Lines changed: 6 additions & 7 deletions

File tree

프로그래머스/1/151136. 평균 일일 대여 요금 구하기/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,19 @@
44

55
### 성능 요약
66

7-
메모리: 0.0 MB, 시간: 0.00 ms
7+
메모리: undefined, 시간:
88

99
### 구분
1010

1111
코딩테스트 연습 > SELECT
1212

1313
### 채점결과
1414

15-
Empty
15+
합계: 100.0 / 100.0
1616

1717
### 제출 일자
1818

19-
2024년 07월 29일 15:34:53
19+
2026년 06월 10일 12:52:23
2020

2121
### 문제 설명
2222

Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
select round(avg(daily_fee), 0) average_fee
2-
from car_rental_company_car
3-
where car_type = 'SUV'
4-
group by car_type;
1+
SELECT ROUND(AVG(DAILY_FEE), 0) as AVERAGE_FEE
2+
FROM CAR_RENTAL_COMPANY_CAR
3+
WHERE CAR_TYPE = "SUV"

0 commit comments

Comments
 (0)