Post

기본 연산부터 그룹화, 정렬까지

SQL 기본 연산부터 그룹화와 정렬까지 핵심 쿼리 작성 방법

1. 엑셀 대신 SQL로 한번에 계산하기 (SUM, AVERAGE, COUNT, MIN, MAX)

  • 숫자 연산 종류
연산자설명
+더하기
-빼기
*곱하기
/나누기
1
2
3
4
select food_preparation_time,
       delivery_time,
       food_preparation_time + delivery_time as total_time
from food_orders
  • 기본 연산, 합계와 평균 구하기
1
2
3
select sum(food_preparation_time) total_food_preparation_time,
       avg(delivery_time) avg_delivery_time
from food_orders
  • 전체 데이터의 갯수 구하기
1
2
3
select count(1) count_of_orders,
       count(distinct customer_id) count_of_customers
from food_orders
  • 데이터의 범위, 최솟값과 최댓값 구하기
1
2
3
select min(price) min_price,
       max(price) max_price
from food_orders

2. GROUP BY로 범주별 연산 한 번에 끝내기

1
2
3
4
select 카테고리컬럼(원하는컬럼 아무거나),
       sum(계산 컬럼),
from
group by 카테고리컬럼(원하는컬럼 아무거나)
  • 음식 종류별 주문 금액 합계
    1
    2
    3
    4
    
    select cuisine_type,
         sum(price) sum_of_price
    from food_orders
    group by cuisine_type
    
  • 음식점별 주문 금액 최댓값 조회하기
    1
    2
    3
    4
    
    select restaurant_name,
         max(price) "최대 주문금액"
    from food_orders
    group by restaurant_name
    
  • 결제 타입별 가장 최근 결제일 조회하기
    1
    2
    3
    4
    
    select pay_type "결제타입",
         max(date) "최근 결제일"
    from payments
    group by pay_type
    

3. Query 결과를 정렬하여 업무에 바로 사용하기 (ORDER BY)

1
2
3
4
5
select 카테고리컬럼(원하는컬럼 아무거나),
       sum(계산 컬럼),
from
group by 카테고리컬럼(원하는컬럼 아무거나)
order by 정렬을 원하는 컬럼 (카테고리컬럼(원하는컬럼 아무거나), sum(계산 컬럼)   가능)
  • 음식 종류별 주문 금액 합계를 ‘주문 금액 합계’ 기준으로 오름차순 정렬
    1
    2
    3
    4
    5
    
    select cuisine_type,
         sum(price) sum_of_price
    from food_orders
    group by cuisine_type
    order by sum(price)
    

4. SQL 구조 마스터 - WHERE, GROUP BY, ORDER BY 로 완성되는 SQL 구조

1
2
3
4
5
select
from
where
group by
order by
This post is licensed under CC BY 4.0 by the author.