DELIMITER //
CREATE PROCEDURE helloworld()
BEGIN
SELECT 'Hello World' AS message;
END//
CALL helloworld();
The Procedure
The CALL that Runs The Procedure
The Output