【发布时间】:2013-12-09 11:51:49
【问题描述】:
当我想声明这个程序时它没有声明
此代码不报告任何报告
我不知道这是问题所在
我想在 solr index 中使用这个过程,但是这个过程 不执行
DELIMITER $$
create procedure getAllStuff()
begin
declare category_id int(10);
declare category_name varchar default NULL;
declare stateCommands varchar(255) default NULL;
declare leafCats INT(10) default NULL;
declare tableName varchar(255) default NULL;
declare finished int(10) default 0;
declare leafCats_cursor CURSOR FOR select id,name from category where rgt=lft+1;
declare CONTINUE handler FOR NOT FOUND set finished=1;
create temporary table IF NOT EXISTS leafCats (
id int null primary key auto_increment,
category_id int,
tableName varchar(255)
);
open leafCats_cursor;
set_leafCats: LOOP
fetch leafCats_cursor into category_id,category_name;
if finished =1 then
leave set_leafCats
endif
set tableName=replace(catgeory_name,' ','_');
set tableName = concat('stuff_',tableName);
insert into leafCats values (NULL,category_id,tableName);
end loop set_leafCats;
close leafCats_cursor;
declare cats_cursor CURSOR FOR select category_id,category_name from leafCats;
open cats_cursor;
get_cats: LOOP
fetch cats_cursor into category_id,category_name;
if finished =1 then
leave set_leafCats;
endif;
if stateCommands != NULL then
set stateCommands=concat(sql,'select t.id as id,t.name,t.overall,c.id as
category_id from '.tableName .' t join category c where c.id=' . category_id);
else
set stateCommands=concat(sql,'union all select t.id asid,t.name,t.overall,c.id as
category_id from '.tableName .' t join category c where c.id=' . category_id);
end if;
end loop get_cats;
close cats_cursor;
PREPARE s1 FROM stateCommands;
EXECUTE s1;
DEALLOCATE PREPARE s1;
end @@
DELIMITER ;
当我将分隔符更改为 @@ 时出现此错误
ERROR 1064 (42000):您的 SQL 语法有错误;检查与您的 MySQL 服务器版本相对应的手册,以获取在 'default NULL; 附近使用的正确语法; 声明 stateCommands varchar(255) 默认 NULL; 在第 4 行声明 leafCats ' mysql> 分隔符;
【问题讨论】:
-
检查语法错误。所有 DECLARE 语句必须在 BEGIN..END 子句的开头。
-
没有错误只是 -> DELIMITER ; -> 分隔符;
-
存在语法错误。添加有关您的客户的更多信息,显示错误消息。