Question: Fill in the blank so the statement will determine which items Yash Randall has purchased. Use the first initial of the table as an alias.

Fill in the blank so the statement will determine which items Yash Randall has purchased. Use the first initial of the table as an alias. Perform the search using the customer name, not the customer number. Just enter the part that's missing. 

SELECT DISTINCT title, customer_first_name, customer_last_name, OD.item_id

FROM customers C JOIN orders O ON C.customer_id = O.customer_id

JOIN order_details OD ON O.order_id = OD.order_id

[Fill in the missing piece]

WHERE customer_first_name = 'Yash' AND customer_last_name = 'Randall'

ORDER BY item_id;

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

JOIN items I ON ODitemid Iitemid Explanation In order to determine whi... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!