When I add a request to the TB_PEDIDOS
table,
TB_PEDIDOS:
ID_PEDIDO, DATA_PEDIDO, ID_CLIENTE
I also need to add the order details in another table:
TB_DETALHES_PEDIDOS:
ID_PEDIDO, ID_PRODUTO, QUANTIDADE, PRECO
Example:
Produto1 QTD:2 PRECO:5
Produto2 QTD:1 PRECO:2
Produto3 QTD:8 PRECO:3
Do I add the details with a loop, or is there another way to do this?
The database is SQL SERVER.