First page Back Continue Last page Image

The “Hello World” of Stored Procedures

DELIMITER // 

CREATE PROCEDURE helloworld()

BEGIN

SELECT 'Hello World' AS message;

END//

CALL helloworld();

The Procedure

The CALL that Runs The Procedure

The Output