Skip to content

London, or as the Romans called it "Londonium"! Home to over 8.5 million residents who speak over 300 languages. While the City of London is a little over one square mile (hence its nickname "The Square Mile"), Greater London has grown to encompass 32 boroughs spanning a total area of 606 square miles!

Given the city's roads were originally designed for horse and cart, this area and population growth has required the development of an efficient public transport system! Since the year 2000, this has been through the local government body called Transport for London, or TfL, which is managed by the London Mayor's office. Their remit covers the London Underground, Overground, Docklands Light Railway (DLR), buses, trams, river services (clipper and Emirates Airline cable car), roads, and even taxis.

The Mayor of London's office make their data available to the public here. In this project, you will work with a slightly modified version of a dataset containing information about public transport journey volume by transport type.

The data has been loaded into a Snowflake database called TFL with a single table called JOURNEYS, including the following data:

TFL.JOURNEYS

ColumnDefinitionData type
MONTHMonth in number format, e.g., 1 equals JanuaryINTEGER
YEARYearINTEGER
DAYSNumber of days in the given monthINTEGER
REPORT_DATEDate that the data was reportedDATE
JOURNEY_TYPEMethod of transport usedVARCHAR
JOURNEYS_MILLIONSMillions of journeys, measured in decimalsFLOAT

Note that in Snowflake all databases, tables, and columns are upper case by default.

You will execute SQL queries to answer three questions, as listed in the instructions.

Spinner
DataFrameas
most_popular_transport_types
variable
WITH MOST_POPULAR_TRANSPORT_TYPES AS (
    SELECT 
        JOURNEY_TYPE,
        ROUND(SUM(JOURNEYS_MILLIONS), 2) AS TOTAL_JOURNEYS_MILLIONS
    FROM 
        TFL.JOURNEYS
    GROUP BY 
        JOURNEY_TYPE
    ORDER BY 
        TOTAL_JOURNEYS_MILLIONS DESC
)
SELECT * FROM MOST_POPULAR_TRANSPORT_TYPES;
Spinner
DataFrameas
emirates_airline_popularity
variable
-- emirates_airline_popularity
WITH EMIRATES_AIRLINE_POPULARITY AS (
    SELECT 
        MONTH,
        YEAR,
        ROUND(JOURNEYS_MILLIONS, 2) AS ROUNDED_JOURNEYS_MILLIONS
    FROM 
        TFL.JOURNEYS
    WHERE 
        JOURNEY_TYPE = 'Emirates Airline'
        AND JOURNEYS_MILLIONS IS NOT NULL
    ORDER BY 
        JOURNEYS_MILLIONS DESC
    LIMIT 5
)
SELECT * FROM EMIRATES_AIRLINE_POPULARITY;
Spinner
DataFrameas
least_popular_years_tube
variable
-- least_popular_years_tube
WITH LEAST_POPULAR_YEARS_TUBE AS (
    SELECT 
        YEAR,
        JOURNEY_TYPE,
        ROUND(SUM(JOURNEYS_MILLIONS), 2) AS TOTAL_JOURNEYS_MILLIONS
    FROM 
        TFL.JOURNEYS
    WHERE 
        JOURNEY_TYPE = 'Underground & DLR'
        AND JOURNEYS_MILLIONS IS NOT NULL
    GROUP BY 
        YEAR, JOURNEY_TYPE
    ORDER BY 
        TOTAL_JOURNEYS_MILLIONS ASC
    LIMIT 5
)

SELECT * FROM LEAST_POPULAR_YEARS_TUBE;