U kunt MySQL's START TRANSACTION
. gebruiken syntaxis om een transactie vast te leggen:
Bron:http://dev.mysql.com/doc/refman /5.0/nl/commit.html
START TRANSACTION;
SELECT @A:=SUM(salary) FROM table1 WHERE type=1;
UPDATE table2 SET [email protected] WHERE type=1;
COMMIT;
U kunt uw vraag ook in een .sql-bestand schrijven en naar mysql sturen:
$ cat query.sql | mysql -uroot -proot