Tables in the wild
You're working for an e-commerce company amidst a pivotal moment of transition. Your company is migrating its data infrastructure from Postgres to BigQuery, aiming for enhanced scalability and efficiency. Your manager has a crucial task for you: to identify the unique seller cities within the dataset.
Este exercício faz parte do curso
Introduction to BigQuery
Instruções do exercício
- Modify the code to select the distinct
seller_city
values from theecomm_sellers
table in theecommerce
dataset.
Exercício interativo prático
Experimente este exercício completando este código de exemplo.
SELECT DISTINCT seller_city
-- Specify the dataset and table
FROM ____;