Delete any record of them will report an error like this:
ERROR 1451 (23000): Cannot delete or update a parent row: a foreign key constraint fails
How to overcome this problem?
|
Delete any record of them will report an error like this:
How to overcome this problem? |
|||
|
|
Questions on Server Fault are expected to relate to professional server, networking, or related infrastructure administration within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.
|
Have you tried:
By clearing the reference, the FK constraint shouldn't be a problem any more. |
||||
|
|
|
You have two options. One is to clear the reference, as Gorilla pointed out in his post. You do this by setting the reference to null or something similar, then delete the posts in the right order, but this is not what you typically want to do. Instead you probably want to do a cascade delete, but your schema is not correctly configured for this. Cascade delete means that the posts referencing the post you try to delete will be removed also. The syntax to setup a table to support cascades looks something like this:
If you setup your tables like this deletion of the original post (an owner in the example) will result in the deletion of all posts referencing (cars in the example). You will avoid having to clear references and remove all posts by hand. Depending on the type of database you use an ALTER TABLE command to introduce the cascade delete in your schema. |
|||
|
|