Is it possible to insert a row into multiple tables at once? If you do several tables related by an ID; what is the best way to ensure integrity is maintained in case an INSERT fails?
feedback
|
|
That's exactly what transactions are for. If any of the commands fail, the whole thing since
This being MySQL, you can't use transactions with MyISAM tables (you'll need the tables to use some engine that supports this, probably InnoDB). This will never be inserted into the table (normally you'd have some branching, e.g. an IF):
Caveat: SQL commands which change the database structure (e.g. | |||||
feedback
|
|
Use transactions, luke. | |||
feedback
|
|
MySQL can insert multiple rows (search for 'multiple rows') like this:
However, there's no way to tell what got inserted and what wasn't due to constraint violations, beyond the query returning a count of records, duplicates, and warnings. You also can't use If you need to guarantee integrity, then use single row insert statements and transactions. | |||
|
feedback
|