views:

195

answers:

1

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.

+1  A: 

Your script does not actually execute the play procedure via call command

You need to add

call play

command

DVK