Créer un entrepôt de données avec BigQuery : atelier challenge avis

40042 avis

Thomas P. · Examiné il y a environ 2 ans

Task 2 Populate the mobility record data ALTER TABLE covid.oxford_policy_tracker ADD COLUMN population INT64, ADD COLUMN country_area FLOAT64, ADD COLUMN mobility STRUCT< avg_retail FLOAT64, avg_grocery FLOAT64, avg_parks FLOAT64, avg_transit FLOAT64, avg_workplace FLOAT64, avg_residential FLOAT64 > UPDATE `covid.oxford_policy_tracker` t0 SET t0.mobility.avg_retail = t1.avg_retail, t0.mobility.avg_grocery = t1.avg_grocery, t0.mobility.avg_parks = t1.avg_parks, t0.mobility.avg_transit = t1.avg_transit, t0.mobility.avg_workplace = t1.avg_workplace, t0.mobility.avg_residential = t1.avg_residential FROM ( SELECT country_region, date, AVG(retail_and_recreation_percent_change_from_baseline) as avg_retail, AVG(grocery_and_pharmacy_percent_change_from_baseline) as avg_grocery, AVG(parks_percent_change_from_baseline) as avg_parks, AVG(transit_stations_percent_change_from_baseline) as avg_transit, AVG(workplaces_percent_change_from_baseline) as avg_workplace, AVG(residential_percent_change_from_baseline) as avg_residential FROM `bigquery-public-data.covid19_google_mobility.mobility_report` GROUP BY country_region, date ) AS t1 WHERE CONCAT(t0.country_name, t0.date) = CONCAT(t1.country_region, t1.date) //Please ensure you've correctly & accurately populated the mobility column. Task 3 Query missing data in population & country_area columns SELECT DISTINCT country_name FROM `covid.oxford_policy_tracker` WHERE population is NULL UNION ALL SELECT DISTINCT country_name FROM `covid.oxford_policy_tracker` WHERE country_area IS NULL ORDER BY country_name ASC //Please run query against your table to return all countries missing population AND/OR country_area order by name. Task 4 Create a new table for country population data

John T. · Examiné il y a environ 2 ans

wasting my time, I did everything correct but get the same error message

John T. · Examiné il y a environ 2 ans

Massimo S. · Examiné il y a environ 2 ans

Andrei B. · Examiné il y a environ 2 ans

John T. · Examiné il y a environ 2 ans

Max B. · Examiné il y a environ 2 ans

ashok y. · Examiné il y a environ 2 ans

Jonathan K. · Examiné il y a environ 2 ans

Chandrahasa R. · Examiné il y a environ 2 ans

i think little clear instructions on how to use the local region public data will help in preventing time waste searching for that.

Sathish K. · Examiné il y a environ 2 ans

i think little clear instructions on how to use the local region public data will help in preventing time waste searching for that.

Sathish K. · Examiné il y a environ 2 ans

Radha Y. · Examiné il y a environ 2 ans

Juan Manuel M. · Examiné il y a environ 2 ans

Sathish K. · Examiné il y a environ 2 ans

JayaPrakash R. · Examiné il y a environ 2 ans

Adrian W. · Examiné il y a environ 2 ans

Emre A. · Examiné il y a environ 2 ans

Pankaj K. · Examiné il y a environ 2 ans

Prasenjit C. · Examiné il y a environ 2 ans

Bakdaulet Y. · Examiné il y a environ 2 ans

Manasa V. · Examiné il y a environ 2 ans

Jaydeep J. · Examiné il y a environ 2 ans

Neo L. · Examiné il y a environ 2 ans

Abdul Rahman P. · Examiné il y a environ 2 ans

Nous ne pouvons pas certifier que les avis publiés proviennent de consommateurs qui ont acheté ou utilisé les produits. Les avis ne sont pas vérifiés par Google.