Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in SQL by (2.6k points)

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?

1 Answer

0 votes
by (7.2k points)
edited by

In Oracle :

DBMS_OUTPUT.put('Welcome to Intellipaat');

In MySQL :

SELECT 'Welcome to Intellipaat!';

 Want to learn more about SQL? Here is the Online Microsoft SQL training provided by Intellipaat.

Related questions

0 votes
1 answer
asked Jan 6, 2021 in SQL by Appu (6.1k points)
0 votes
4 answers
asked Feb 25, 2021 in SQL by adhiraj (4k points)
0 votes
1 answer
0 votes
1 answer
0 votes
1 answer

Browse Categories

...