Intermediate SQL
  • AI Chat
  • Code
  • Report
  • Beta
    Spinner

    Intermediate SQL

    Here you can access every table used in the course. To access each table, you will need to specify the cinema schema in your queries (e.g., cinema.reviews for the reviews table.

    Take Notes

    Add notes about the concepts you've learned and SQL cells with queries you want to keep.

    Add your notes here

    Unknown integration
    DataFrameavailable as
    df
    variable
    -- Add your own queries here
    SELECT *
    FROM cinema.reviews
    LIMIT 5
    This query is taking long to finish...Consider adding a LIMIT clause or switching to Query mode to preview the result.

    Explore Datasets

    Use the descriptions, films, people, reviews, and roles tables to explore the data and practice your skills!

    • Which titles in the reviews table have an IMDB score higher than 8.5?
    • Select all titles from Germany released after 2010 from the films table.
    • Calculate a count of all movies by country using the films table.
    Unknown integration
    DataFrameavailable as
    df
    variable
    select * from cinema.films limit 10;
    This query is taking long to finish...Consider adding a LIMIT clause or switching to Query mode to preview the result.
    Unknown integration
    DataFrameavailable as
    df
    variable
    select *
    from cinema.descriptions
    limit 10;
    
    This query is taking long to finish...Consider adding a LIMIT clause or switching to Query mode to preview the result.
    Unknown integration
    DataFrameavailable as
    df
    variable
    select * from cinema.films limit 10;
    This query is taking long to finish...Consider adding a LIMIT clause or switching to Query mode to preview the result.
    Unknown integration
    DataFrameavailable as
    df
    variable
    select * from cinema.people where id = 4843;
    
    This query is taking long to finish...Consider adding a LIMIT clause or switching to Query mode to preview the result.
    Unknown integration
    DataFrameavailable as
    df
    variable
    select * from cinema.reviews limit 10;
    This query is taking long to finish...Consider adding a LIMIT clause or switching to Query mode to preview the result.
    Unknown integration
    DataFrameavailable as
    df
    variable
    select * from cinema.roles limit 10;
    This query is taking long to finish...Consider adding a LIMIT clause or switching to Query mode to preview the result.