mysql> delete from faculty where fid in ( select fid from class);
ERROR 1451 (23000): Cannot delete or update a parent row: a foreign key constraint fails (
ass1
.class
, CONSTRAINTclass_ibfk_1
FOREIGN KEY (fid
) REFERENCESfaculty
(fid
))
This is throwing the mentioned error. What should I do?