SQL - Stored Procedures and Functions
Given the procedure below, what will be the output when calling
CALL GetUserCount();?
CREATE PROCEDURE GetUserCount() BEGIN SELECT COUNT(*) AS TotalUsers FROM Users; END;
