Workspace
Wambui Chege/

My workspace

0
Beta
Spinner
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.