The world of JOINS
Previously, you generated insights for Pissa around their sales and revenue by month. Now, you'll look into their most popular pizzas.
Apply your knowledge of joins to get the desired result.
Latihan ini adalah bagian dari kursus
Introduction to Snowflake SQL
Latihan interaktif praktis
Cobalah latihan ini dengan menyelesaikan kode contoh berikut.
SELECT COUNT(o.order_id) AS total_orders,
AVG(p.price) AS average_price,
-- Calculate total revenue
___ AS total_revenue
FROM orders AS o
LEFT JOIN order_details AS od
ON o.order_id = od.order_id
-- Use an appropriate JOIN with the pizzas table
___ AS p
ON od.pizza_id = p.pizza_id