ALTER TABLE tb_produtos ADD CONSTRAINT FK_itens_notas_fiscais
FOREIGN KEY tb_produtos(CODIGO) REFERENCES itens_notas_fiscais(CODIGO_DO_PRODUTO);
ALTER TABLE notas_fiscais ADD CONSTRAINT FK_itens_notas_fiscais
FOREIGN KEY notas_fiscais (NUMERO) REFERENCES itens_notas_fiscais (NUMERO);
Erro está aparecendo nesse código:
ALTER TABLE tb_produtos ADD CONSTRAINT FK_itens_notas_fiscais
FOREIGN KEY tb_produtos(CODIGO) REFERENCES itens_notas_fiscais(CODIGO_DO_PRODUTO);