SQL - Stored Procedures and Functions
You wrote this stored procedure:
When you try to run
CREATE PROCEDURE UpdateSalary() BEGIN UPDATE Employees SET Salary = Salary + 1000 END;
When you try to run
CALL UpdateSalary();, you get an error. What is the likely problem?