https://www.youtube.com/watch?v=xrLtH9PFA7g&list=PLpn2Pzb485yhVWjcs_sfYIs1v-ddmcH2D&index=7
https://www.youtube.com/watch?v=lUox1-b2ZyA&list=PLpn2Pzb485yhVWjcs_sfYIs1v-ddmcH2D&index=8
Датасет new_york_citibike, таблица citibike trips:
SELECT
date(stoptime) as date,
end_station_name,
COUNT(DISTINCT(bikeid)) AS bikes
FROM
`bigquery-public-data.new_york_citibike.citibike_trips`
WHERE
DATE(stoptime) BETWEEN '2016-09-01'
AND '2016-09-30'
AND end_station_name LIKE '%Sq%'
GROUP BY
1,
2
https://datastudio.google.com/embed/reporting/c160fc08-ac9e-4064-a910-e89d5c8ac7e4/page/TyDsB
SELECT
date(stoptime) as date,
IF(end_station_name LIKE '%Sq%','Square','Non Square') AS station_type,
end_station_name,
COUNT(DISTINCT(bikeid)) AS bikes
FROM
`bigquery-public-data.new_york_citibike.citibike_trips`
WHERE
DATE(stoptime) BETWEEN '2016-09-01'
AND '2016-09-30'
GROUP BY
1,
2,
3
https://datastudio.google.com/embed/reporting/c160fc08-ac9e-4064-a910-e89d5c8ac7e4/page/hyDsB
SELECT
usertype,
ROUND(SUM(tripduration)/(60*60*24),2) AS duration_days
FROM
`bigquery-public-data.new_york_citibike.citibike_trips`
WHERE
DATE(stoptime) BETWEEN '2016-09-01'
AND '2016-09-30'
AND end_station_name LIKE '%Sq%'
GROUP BY
1
https://datastudio.google.com/embed/reporting/c160fc08-ac9e-4064-a910-e89d5c8ac7e4/page/syDsB
Датасет iowa_liquor_sales, таблица sales.
https://console.cloud.google.com/bigquery?project=bright-proxy-245105&authuser=1&p=bigquery-public-data&d=iowa_liquor_sales&t=sales&page=table