I have 3 tables:
orderProducts
(orderId
,productId
,productValue
),products
(productId
,productName
)values
(productId
,productValue
,productValuePrice
).
I need to select order products (product id, name, value, price) with defined orderId
.
How to do that with one MySQL query?