mysql存储过程不是1064错误
[SQL]CREATEFUNCTIONtest(longidchar,cumint)RETURNScharBEGINwhile1<cumdosetlongid=selec...
[SQL] CREATE FUNCTION test (longid char,cum int) RETURNS char
BEGIN
while 1< cum do
set longid =select belongagentid from t_agent_info where agentid=longid;
if((select crmnumber from t_agent_info where agentid=longid)=null,select test(select belongagentid from t_agent_info where agentid=longid ,1),set longid=(select crmnumber from t_agent_info where agentid=longid) set cum=0)
end while;
return longid;
end
小弟初学Mysql存储过程不理解,求教哪里出现的错误。
存储过程的书写设想:
有一张t_agent_info表,在这张表里agentid 是用户ID,belongagentid是该用户的上级用户ID,crmnumber是用户串码,我需要得到每个用户的串码,但是三级用户一般没有,这时需要用通过belongagentid来查他的上级二级用户有没有串码,如果有就返回这个串码,如果还没有就继续像一级用户查询,有了就返回。刚开始参数里longid是从外面传进来的三级用户ID,后面如果查询到crmnumber就赋值给longid,然后传出,结果出现下面错误,请问是哪里出错了。cum这个参数是我用来让循环运行的,我实在不知道怎么弄好了。。。谢谢~
[Err] 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 'select belongagentid from t_agent_info where agentid=longid;
if(select crm' at line 4 展开
BEGIN
while 1< cum do
set longid =select belongagentid from t_agent_info where agentid=longid;
if((select crmnumber from t_agent_info where agentid=longid)=null,select test(select belongagentid from t_agent_info where agentid=longid ,1),set longid=(select crmnumber from t_agent_info where agentid=longid) set cum=0)
end while;
return longid;
end
小弟初学Mysql存储过程不理解,求教哪里出现的错误。
存储过程的书写设想:
有一张t_agent_info表,在这张表里agentid 是用户ID,belongagentid是该用户的上级用户ID,crmnumber是用户串码,我需要得到每个用户的串码,但是三级用户一般没有,这时需要用通过belongagentid来查他的上级二级用户有没有串码,如果有就返回这个串码,如果还没有就继续像一级用户查询,有了就返回。刚开始参数里longid是从外面传进来的三级用户ID,后面如果查询到crmnumber就赋值给longid,然后传出,结果出现下面错误,请问是哪里出错了。cum这个参数是我用来让循环运行的,我实在不知道怎么弄好了。。。谢谢~
[Err] 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 'select belongagentid from t_agent_info where agentid=longid;
if(select crm' at line 4 展开
展开全部
好多地方都是错的,第一IF语句格式为IF ELSE IF ELSE ENDIF,第二:null值能比较嘛?你可以改写成if(SELECT IF(statement,1,0)) then 的格式。其他的地方我就没看了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询