CREATE TABLE contaRecebe(
id INT NOT NULL AUTO_INCREMENT,
PRIMARY KEY (id),
nomeA_Alu VARCHAR(60) NOT NULL,
FOREIGN KEY (nomeA_Alu) REFERENCES Aluno(nomeA),
esporte_Alu VARCHAR(20) NOT NULL,
FOREIGN KEY (esporte_Alu) REFERENCES Aluno(esporte),
nf INT NOT NULL,
dtVenc DATE NOT NULL,
valor VARCHAR(8) NOT NULL
);
Question
Lucas Conceição
Bom pessoal,
tentei criar uma tabela aqui,
porém deu esse erro conforme título do tópico,
alguém saberia me explicar o porque?
Código de criação:
Link to comment
Share on other sites
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.