Gostaria de tentar criar uma chave estrangeira entre as tabela VENDAS e ITENS_VENDAS, utilizando o numero como referência. Para isso escrevi a seguinte query:
alter table vendas add constraint FK_itens_notas foreign key (numero) references itens_notas
(numero);
Porém deu o seguinte erro: 09:48:56 alter table vendas add constraint FK_itens_notas foreign key (numero) references itens_notas (numero) Error Code: 1822. Failed to add the foreign key constraint. Missing index for constraint 'FK_itens_notas' in the referenced table 'itens_notas' 0.016 sec
POR QUE OCORREU ESSE ERRO?