I have a transaction in which I want to do something like this:
START TRANSACTION;
INSERT INTO table1 (...)
SELECT ... FROM table 2;
... if select count(*) from table1 returns 0 abort/rollback ...
COMMIT;
Is this possible?
|
I have a transaction in which I want to do something like this:
Is this possible? |
|||
|
|
|
Sure. In MySQL, you can only use
Rolling back a transaction that did nothing (inserted no rows) doesn't make a whole lot of sense, but I'm assuming you simplified reality for this question. |
|||
|