mysql 存储过程创建总是出错
我是在phpmyadmin的SQL下运行下面语句dropprocedureifexistsproductpricing;createprocedureproductpri...
我是在phpmyadmin的SQL下运行下面语句
drop procedure if exists productpricing;
create procedure productpricing()
begin
select danhao from s_jc_tbhead;
end;
总是报错这样的错,#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 '' at line 3
如果我把select danhao from s_jc_tbhead;这行删除,然后再运行就不会报错,而select danhao from s_jc_tbhead这条语句单个运行是正确的,请问哪里出错了呢
谢谢,可能我数据库有点问题,本来是5.0的,应该是支持存储过程的,但一运行你的代码就死机,结束程序后,再运行就会报错,我把数据库升级成5.1了,现在可以正常运行你的代码,谢谢 展开
drop procedure if exists productpricing;
create procedure productpricing()
begin
select danhao from s_jc_tbhead;
end;
总是报错这样的错,#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 '' at line 3
如果我把select danhao from s_jc_tbhead;这行删除,然后再运行就不会报错,而select danhao from s_jc_tbhead这条语句单个运行是正确的,请问哪里出错了呢
谢谢,可能我数据库有点问题,本来是5.0的,应该是支持存储过程的,但一运行你的代码就死机,结束程序后,再运行就会报错,我把数据库升级成5.1了,现在可以正常运行你的代码,谢谢 展开
3个回答
展开全部
在phpmyadmin中,点击“SQL”
在
[ 语句定界符 ] 在此再次显示此查询
中,填;;(两个;)
然后,再把你的句子改一下子:
drop procedure if exists productpricing;;
create procedure productpricing()
begin
select danhao from s_jc_tbhead;
end;;
一定要注意,上面的两个;;,一个;
相信我,一定能成功。
在
[ 语句定界符 ] 在此再次显示此查询
中,填;;(两个;)
然后,再把你的句子改一下子:
drop procedure if exists productpricing;;
create procedure productpricing()
begin
select danhao from s_jc_tbhead;
end;;
一定要注意,上面的两个;;,一个;
相信我,一定能成功。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select danhao into xxx from s_jc_tbhead;
一定要接into,否则你查询有什么意义呢,不能使用查询结果.
一定要接into,否则你查询有什么意义呢,不能使用查询结果.
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
delimiter $$
drop procedure if exists productpricing $$
create procedure productpricing()
begin
select danhao from s_jc_tbhead;
end;
$$
delimiter ;
drop procedure if exists productpricing $$
create procedure productpricing()
begin
select danhao from s_jc_tbhead;
end;
$$
delimiter ;
追问
运行这个,出现#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 'delimiter' at line 1错误
追答
拷全了吗,;和$还有空格都不能少。我这可以执行
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询