I am a bit confused with mysql create procedure script. My script looks like as follows:
DELIMITER //
DROP PROCEDURE play;
CREATE PROCEDURE play()
BEGIN
insert into hi (name,id)VALUES ('apple','2010');
END
//
It does not insert into table hi.
From stackoverflow
-
Your script does not actually execute the
play
procedure viacall
commandYou need to add
call play
command
0 comments:
Post a Comment