Chapter 19: Execution blocks
Examples
Using BEGIN ... END
BEGIN
UPDATE Employees SET PhoneNumber = '5551234567' WHERE Id = 1;
UPDATE Employees SET Salary = 650 WHERE Id = 3;
END
Read Execution blocks online: https://riptutorial.com/sql/topic/1632/execution-blocks
https://riptutorial.com/ 52