Skip to content
Spinner
DataFrameas
sales_orders
variable
-- Here's a SQL cell. Have a play around with this query and try running it/ editing the code.
select *
from sales.orders
Spinner
DataFrameas
solution
variable
-- Here's an example query solution. 
-- Try submitting the project without changing anything to see the feedback message.
-- Now update the query to filter on order_id 10 to get it correct.
select customer_id
from sales.orders
where order_id = 10 -- replace with 10 and submit to complete the project.