-3
CREATE TABLE PedidoProduto + ProdutoPedido (
Quantidade numeric(50),
IDproduto int,
IDpedido int,
FOREIGN KEY(IDproduto) REFERENCES Produto (IDproduto),
FOREIGN KEY(IDpedido) REFERENCES Pedido (IDpedido)
);
In error gives this:
Message 102, Level 15, Status 1, Line 63
Incorrect syntax next to '+'.
The table PedidoProduto
is associative.
You are wanting to create two tables at the same time?
– Leticia Rosa
the mistake is:
Sintaxe incorreta no +
!– Rovann Linhalis