Answers for "do we need to specify commit to save changes in mysql"

SQL
1

do we need to specify commit to save changes in mysql

BEGIN;
SELECT @A:=SUM(salary) FROM table1 WHERE type=1;
UPDATE table2 SET summmary=@A WHERE type=1;
COMMIT;
Posted by: Guest on July-06-2020
-1

do we need to specify commit to save changes in mysql

SET AUTOCOMMIT=0
Posted by: Guest on July-06-2020

Code answers related to "do we need to specify commit to save changes in mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language