코딩테스트/리트코드(LeetCode) - SQL Study Plan

리트코드(LeetCode) SQL - 1484. Group Sold Products By The Date

진한색 2023. 1. 5. 16:55

 

select sell_date, COUNT(distinct product) as num_sold,GROUP_CONCAT(distinct product order by product)  as products
    from Activities group by sell_date
    order by 1;

 

728x90