I am trying to write a MySQL processed procedure and want to send some output to the console or stdout. Oracle uses DBMS_OUTPUT.PUTLINE for debugginf.
Is there an equivalent DBMS_OUTPUT in MySQL stored procedures?
In Oracle:
DBMS_OUTPUT.put('Hello World');
In MySQL:
SELECT 'Hello World!';