ALTER TABLE items_facturas ADD CONSTRAINT FK_FACTURAS FOREIGN KEY (NUMERO) REFERENCES facturas(NUMERO);
Tengo la duda este es el código que nos brinda el instructor, pero al momento de ejecutarlo me arroja el error Error Code: 1822. Failed to add the foreign key constraint. Missing index for constraint 'fk_facturas' in the referenced table 'factura
La solucione que encontré fue esta: ALTER TABLE items_facturas ADD CONSTRAINT fk_items_facturas FOREIGN KEY (NUMERO) REFERENCES facturas(NUMERO); Con esto, sí, se pudo relacionar la tabla. ¿Por que sucede este error?