Chapter 9 SQL Statements
569
♦ The following procedure displays a message on the server message
window:
CREATE PROCEDURE message_test ()
BEGIN
MESSAGE ’The current date and time: ’, Now();
END
♦ The statement:
CALL message_test()
displays the string The current date and time, and the current date and
time, on the database server message window.