bcs_ptx 0 Denunciar post Postado Dezembro 2, 2014 Ai pessoal, estou tentando criar tuas tabelas com FK e esta dando esse erro: Error Code: 1005. Can't create table 'projeto.tbl_une_cliente' (errno: 121) alguém sabe me dizer o por que? segue meu código CREATE TABLE tbl_une_gerente ( id_tbl_une_gerente int(10) NOT NULL AUTO_INCREMENT, id_tbl_setor int(10) DEFAULT NULL, id_tbl_usuario int(10) DEFAULT NULL, PRIMARY KEY (id_tbl_une_gerente), KEY id_tbl_setor (id_tbl_setor), KEY id_tbl_usuario (id_tbl_usuario), CONSTRAINT id_tbl_setor FOREIGN KEY (id_tbl_setor) REFERENCES tbl_setor (id_tbl_setor), CONSTRAINT id_tbl_usuario FOREIGN KEY (id_tbl_usuario) REFERENCES tbl_usuario (id_tbl_usuario) ) CREATE TABLE tbl_une_cliente( id_tbl_une_cliente int(10) NOT NULL AUTO_INCREMENT, id_tbl_cliente int(10) DEFAULT NULL, id_tbl_usuario int(10) DEFAULT NULL, PRIMARY KEY (id_tbl_une_cliente), KEY id_tbl_cliente (id_tbl_cliente), KEY id_tbl_usuario (id_tbl_usuario), CONSTRAINT id_tbl_cliente FOREIGN KEY (id_tbl_cliente) REFERENCES tbl_cliente (id_tbl_cliente), CONSTRAINT id_tbl_usuario FOREIGN KEY (id_tbl_usuario) REFERENCES tbl_usuario (id_tbl_usuario) ) Compartilhar este post Link para o post Compartilhar em outros sites