리뷰 BigQuery로 데이터 웨어하우스 빌드하기: 챌린지 실습개

리뷰 BigQuery로 데이터 웨어하우스 빌드하기: 챌린지 실습개

리뷰 22345개

Youhei A. · 대략 3시간 전에 리뷰됨

sutiyono w. · 대략 3시간 전에 리뷰됨

Linoy Xavier T. · 대략 4시간 전에 리뷰됨

Jahnavi S. · 대략 7시간 전에 리뷰됨

Harshavardhan V. · 대략 7시간 전에 리뷰됨

Al bani D. · 대략 8시간 전에 리뷰됨

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. · 대략 9시간 전에 리뷰됨

good labb

Puri J. · 대략 10시간 전에 리뷰됨

ADITYA K. · 대략 10시간 전에 리뷰됨

Mohammed A. · 대략 11시간 전에 리뷰됨

Akshat Rao 4. · 대략 11시간 전에 리뷰됨

Raj M. · 대략 14시간 전에 리뷰됨

Raj S. · 대략 15시간 전에 리뷰됨

Alann R. · 대략 15시간 전에 리뷰됨

Sangram D. · 대략 17시간 전에 리뷰됨

Siti Rosyadah N. · 대략 17시간 전에 리뷰됨

Aditya N. · 대략 18시간 전에 리뷰됨

Spandan C. · 대략 21시간 전에 리뷰됨

ROHAN J. · 대략 21시간 전에 리뷰됨

Jay R. · 대략 23시간 전에 리뷰됨

Muhammad Fauzil Azhim P. · 대략 23시간 전에 리뷰됨

Suprava M. · 대략 23시간 전에 리뷰됨

Kalyan P. · 대략 24시간 전에 리뷰됨

Yeheskiel A. · 대략 24시간 전에 리뷰됨

James P. · 1일 전에 리뷰됨

Google은 게시된 리뷰가 제품을 구매 또는 사용한 소비자에 의해 작성되었음을 보증하지 않습니다. 리뷰는 Google의 인증을 거치지 않습니다.