Answers for "oracle begin transaction"

SQL
0

oracle sql transaction

START TRANSACTION;
SELECT @A:=SUM(salary) FROM table1 WHERE type=1;
UPDATE table2 SET summary=@A WHERE type=1;
COMMIT;
Posted by: Guest on March-05-2021
0

sql begin transaction

--Applies to SQL Server and Azure SQL Database
 
BEGIN { TRAN | TRANSACTION }   
    [ { transaction_name | @tran_name_variable }  
      [ WITH MARK [ 'description' ] ]  
    ]  
[ ; ]
Posted by: Guest on July-22-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language