Posts by BoomSlang • 5 points
1 post
-
-3
votes1
answer110
viewsQ: Can someone help me find the mistake in this create?
CREATE TABLE PedidoProduto + ProdutoPedido ( Quantidade numeric(50), IDproduto int, IDpedido int, FOREIGN KEY(IDproduto) REFERENCES Produto (IDproduto), FOREIGN KEY(IDpedido) REFERENCES Pedido…