mysql create procedure script
Posted
by user293487
on Stack Overflow
See other posts from Stack Overflow
or by user293487
Published on 2010-04-09T03:06:28Z
Indexed on
2010/04/09
3:13 UTC
Read the original article
Hit count: 358
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.
© Stack Overflow or respective owner