<iframe width="560" height="315" src="https://www.youtube.com/embed/fn-Z-UE566s" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>

The following are the resources you need to do what is shown in the demo.

This is the query that was used in the demo.

[code language=”sql”]
SELECT STRFTIME_UTC_USEC(pickup_datetime,’%Y-%m’) as TripMonth
, SUM(trip_distance) as total_trip_distance
, SUM(fare_amount) as total_fare_amount
, SUM(extra) as total_extra_amount
, SUM(mta_tax) as total_mta_tax
, SUM(tip_amount) as total_tip_amount
, SUM(tolls_amount) as total_tolls_amount
, SUM(ehail_fee) as total_ehail_fee
, SUM(total_amount) as total_paid_amount
FROM [nyc-tlc:green.trips_2014]
GROUP BY TripMonth
ORDER BY TripMonth
[/code]