is it possible to delete from multiple tables?
i have 3 tables all related by an id, so where the id is the same delete the relevant information.
many thanks
|
|
|
You need to specify ON DELETE CASCADE rule for your tables. Have a look at MySQL docs on foreign keys. Cascading rules are exactly what you need to force data integrity. With those rules properly specified when you delete the parent row all children rows will be automatically deleted by RDBMS. |
|||||
|
|
In InnoDB you can have a foreign key by setting it up as foreign keys to cascade. Please see here: http://dev.mysql.com/doc/refman/5.5/en/innodb-foreign-key-constraints.html |
|||
|
|