Workspace

Example Assignment

0
Beta
Spinner

Example assignment

This is an example assignment.

Unknown integration
DataFrameavailable as
df
variable
-- Select the product details, quantity, and location of bicycles in stock
SELECT product_name,
        category_name,
        list_price,
        quantity,
        store_id
FROM products
  INNER JOIN stocks
    ON products.product_id = stocks.product_id
  INNER JOIN categories
    ON products.category_id = categories.category_id
ORDER BY product_name
This query is taking long to finish...Consider adding a LIMIT clause or switching to Query mode to preview the result.