0
Good afternoon, I wonder if there are possibilities to bring everything in a row with the following tables:
Pedidos
id
id_produto1
id_produto2
id_produto3
Produtos
id
produto
I would like to make a select that brings the order table with the name of the products on the side of each id_product in a row. It will be possible?
Example
id | id_produto1 | produto | id_produto2 | produto | id_produto3 | produto
1 | 2 | arroz | 3 | feijão | 4 | Macarrão
there is no id_request column, but id_pedido1, id_pedido2 and id_pedido3.
– Romario Pires
SELECT ORDERS.ID, ORDERS.ID_PRODUTO1 (SELECT PRODUCTS.PRODUCT FROM PRODUCTS WHERE PRODUCTS.ID = ORDERS.ID_PRODUTO1) AS PRODUCTS, ORDERS.ID_PRODUTO2 (SELECT PRODUCTS.PRODUCT FROM PRODUCTS WHERE PRODUCTS.ID = ORDERS.ID_PRODUTO2) AS PROD_2, ORDERS.ID_PRODOD3 (SELECT PRODUCTS.PRODUCT FROM PRODUCTS WHERE PRODUCTS.ID = ORDERS.ID_PRODUTO3) AS PRODUTO_3, FROM ORDERS
– Alisson