Using joins
In many data warehouses, including BigQuery, data is stored in various tables linked by common keys across the table. This is the case with the course data, which mimics a real-world data warehouse.
For this exercise, you will combine two tables to create a single outcome.
Cet exercice fait partie du cours
Introduction to BigQuery
Instructions
- Join the
ecomm_ordersto theecomm_order_detailsusing the commonorder_idcolumn. - Order the dataset by
order_purchase_timestampto show the most recent orders.
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
SELECT
ecomm_orders.order_id,
ecomm_orders.order_items,
ecomm_order_details.order_status,
ecomm_order_details.order_purchase_timestamp
FROM
ecommerce.ecomm_orders
-- Join on the common order_id column
JOIN
ecommerce.ecomm_order_details ___ (___)
-- Order to show recent orders
ORDER BY ___ ___
LIMIT 10;