sqlfiddle

Execute triggers stored procedures on SqlFiddle. Mysql

做~自己de王妃 提交于 2019-11-26 16:26:28
问题 Does SQL-fiddle facilitate execution of triggers/stored procedures? I have been unable to execute even the simplest form of stored procedure on sqlfiddle DELIMITER $$ DROP PROCEDURE IF EXISTS myProc $$ CREATE PROCEDURE myProc() BEGIN END$$ DELIMITER ; Sqlfiddle does not allow executing this(above) sql in build schema, but allows create table etc Note: The same syntax is working for me on my localhost using wamp with mysql 5.5.24 Can anyone guide please? 回答1: Instead of using the delimiter