03-05-2010, 01:13 PM
http://dev.mysql.com/doc/refman/5.1/en/commit.html
Voilà pour la syntaxe
Voilà pour la syntaxe
Code :
START TRANSACTION;
SELECT @A:=SUM(salary) FROM table1 WHERE type=1;
UPDATE table2 SET summary=@A WHERE type=1;
COMMIT;