Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我尝试编写一个 MySQL 存储过程,并希望将一些输出发送到控制台或标准输出。Oracle 使用 DBMS_OUTPUT.PUTLINE 来调试ginf。
MySQL 存储过程中是否有等效的 DBMS_OUTPUT?
在甲骨文中:
DBMS_OUTPUT.put('Hello World');
在 MySQL 中:
SELECT 'Hello World!';