2024/10/24 4

sql 달리기반 3~5번

3번SELECT u.user_id, u.email,           COALESCE(p.point,0) 'point' FROM users u JOIN point_users p ON u.user_id = p.user_id order by p.point desc; 4번SELECT      c.CustomerName,     COUNT(o.OrderID) AS OrderCount,     SUM(o.TotalAmount) AS TotalSpent FROM      Customer c JOIN      Orders o ON c.CustomerID = o.CustomerID GROUP BY      c.CustomerID, c.CustomerName HAVING      (SELECT COUNT(*)      ..

카테고리 없음 2024.10.24

sql 걷기반 마지막~ 달리기반 1,2

11-1SELECT o.id 'order_id',         p.name 'product_name' FROM orders o JOIN products p ON o.product_id = p.id  11-2SELECT p.id 'product_id',        SUM(p.price * o.quantity) 'total' FROM orders o JOIN products p ON o.product_id = p.id GROUP BY p.id ORDER BY total DESC LIMIT 1  11-3SELECT product_id, SUM(quantity) 'total' FROM orders o GROUP BY product_id   11-4SELECT p.name  FROM orders o JOIN ..

자유학습 기록 2024.10.24

sql 걷기반 6~8번

6-1select *,         rank() over(order by rating desc) "순위" from lol_users  6-2select name,         max(join_date) "게임시작" from lol_users6-3select * from lol_users order by region, rating desc6-4select region,         avg(rating) "평균레이팅" from lol_users group by region -------------------------------7-1select * from lol_feedbacks order by satixfactons_score desc 7-2select user_name,         max(fe..

자유학습 기록 2024.10.24