ComeçarComece de graça

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.

Este exercício faz parte do curso

Introduction to BigQuery

Ver curso

Instruções do exercício

  • Join the ecomm_orders to the ecomm_order_details using the common order_id column.
  • Order the dataset by order_purchase_timestamp to show the most recent orders.

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

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;
Editar e executar o código