You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Query A
SELECT customer.name, product.name, product.value, order.date
FROM customer
JOIN order ON customer.customerid = order.customerid
JOIN product ON product.productid = order.productid
Greetings.
According to the EER Diagram and the Classes below, how can I produce the Query A?
Can we push the Solution B to better use the joins array?
EER Diagram
Classes
Call
Query A
SELECT customer.name, product.name, product.value, order.date
FROM customer
JOIN order ON customer.customerid = order.customerid
JOIN product ON product.productid = order.productid
Solution B
Regards,
The text was updated successfully, but these errors were encountered: