SQL - Stored Procedures and Functions
Given the procedure below, what will be the output when calling
CALL ShowMessage();?CREATE PROCEDURE ShowMessage() BEGIN SELECT 'Hello, World!' AS Greeting; END;
