Created
August 28, 2012 15:03
-
-
Save Fhernd/3498865 to your computer and use it in GitHub Desktop.
Database scripts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TABLE T_Pedido ( | |
PedidoId INTEGER NOT NULL UNIQUE, | |
clienteId INTEGER NOT NULL UNIQUE, | |
FOREIGN KEY (clienteID) REFERENCES | |
T_Cliente, | |
PRIMARY KEY (PedidoId, clienteId)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment