Beta
Table of Contents
The outline of your notebook will show up here. You can include headings in any text cell by starting a line with #
, ##
, ###
, etc., depending on the desired title hierarchy.
Unknown integration
DataFrameavailable as
df
variable
-- Select the film title and inventory ids
SELECT
f.title,
i.inventory_id
FROM film AS f
-- Join the film table to the inventory table
INNER JOIN inventory AS i ON f.film_id=i.film_id
This query is taking long to finish...Consider adding a LIMIT clause or switching to Query mode to preview the result.