[求助]mysql5存储过程出错
create procedure myproc5 (c1 int,c2 varchar(20),c3 varchar(50))<BR>begin<BR> insert into table1 values ( c1 , c2 , c3 );<BR>end;<BR>帮我看看,哪错了啊??? [local] ERROR 1064: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'insert into table1 values ( c1 , c2 , c3 )' at line 3<BR>[local] ERROR 1064: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'end' at line 1 DELIMITER $$<BR>create procedure myproc5 (c1 int,c2 varchar(20),c3 varchar(50))<BR>begin<BR> insert into AAA value( c1 , c2 , c3 );<BR>end;$$<BR>DELIMITER ;<BR>页:
[1]
