I try to write a MySQL stored procedure, and want to send some output to console or stdout. Oracle uses DBMS_OUTPUT.PUTLINE to debugging.
Is there an equivalent of DBMS_OUTPUT in MySQL stored procedures?
In Oracle :
DBMS_OUTPUT.put('Welcome to Intellipaat');
In MySQL :
SELECT 'Welcome to Intellipaat!';