[programmers] MySQL - Lv.4 오프라인/온라인 판매 데이터 통합하기 (select)
문제 풀이 SELECT date_format(a.sales_date, '%Y-%m-%d') sales_date, a.product_id, a.user_id, a.sales_amount from (select online_sale_id, user_id, product_id, sales_amount, sales_date from online_sale union all select offline_sale_id, null, product_id, sales_amount, sales_date from offline_sale) a where month(a.sales_date) = 3 order by sales_date, a.product_id, a.user_id 노트 이 문제는 UNION을 사용해서 풀어내는 문제이다..