Languages
[Edit]
EN

MySQL - multiple queries in one transaction

9 points
Created by:
maxsior322
347

In this short article, we would like to show how using MySQL, create a transition that makes multiple queries in one atomic operation.

Quick solution:

START TRANSACTION;

SELECT @sum := SUM(`salary`) FROM `user` WHERE `role` = 'seller';
UPDATE `report` SET `summary` = @sum WHERE `role` = 'seller';

COMMIT;

 

Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join