Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

Como posso juntar A com B e também B com C ao mesmo tempo?


Tentar:
SELECT Product.title, User.username, Order.id
FROM Order
INNER join Product ON Order.ProductID = Product.ID
INNER JOIN user ON Product.UserID = User.ID