Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

2 Answers

up vote 2 down vote accepted

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.

share|improve this answer
my tables are currently myisam, will it affect anything if i edit to swap them to innoDB? – Adamski Dec 20 '10 at 23:24
It depends on your tables, generally - no, it won't affect the data. They do have a slightly different set of features though. The biggest downside of InnoDB is probably a lack of full-text search. – Egor Pavlikhin Dec 20 '10 at 23:28

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

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.