Which is equivalent to MySQL DBMS_OUTPUT

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?

+4
source share
1 answer

In Oracle:

DBMS_OUTPUT.put('Hello World');

In MySQL:

SELECT 'Hello World!';
+6
source

All Articles