6

I try to write a MySQL strored procedure, and want to send some output to console, or stdout. Oracle use DBMS_OUTPUT.PUTLINE to debugginf.

Is there an equivalent of DBMS_OUTPUT in MySQL stored procedures?

Ashkan Mobayen Khiabani
  • 33,575
  • 33
  • 102
  • 171
ckl
  • 71
  • 1
  • 1
  • 4

1 Answers1

12

In Oracle :

DBMS_OUTPUT.put('Hello World');

In MySQL :

SELECT 'Hello World!';
Iswanto San
  • 18,263
  • 13
  • 58
  • 79