在DB2存储过程中使用递归CTE

时间:2010-07-20 01:00:31

标签: stored-procedures db2 recursion common-table-expression

我需要在存储过程中运行递归CTE,但我无法通过它: SQL0104N在“SET count = count + 1;”之后找到意外的令牌“with”; “。预期的代币可能包括:”“。行号= 26。

我的google-fu显示了几个类似的主题,但没有解决方案。

查询在存储过程之外的功能如预期那样,所以我希望有一些语法糖我不知道会让它工作。类似地,proc编译并在没有查询的情况下工作。

这是一个人为的例子:

--setup
create table tree (id integer, name varchar(50), parent_id integer);
insert into tree values (1, 'Alice', null);
insert into tree values (2, 'Bob', 1);
insert into tree values (3, 'Charlie', 2);

-

- the proc
create or replace procedure testme() RESULT SETS 1 LANGUAGE SQL
BEGIN
DECLARE SQLSTATE CHAR(5);
DECLARE SQLCODE integer default 0;
DECLARE count INTEGER;
DECLARE sum INTEGER;
DECLARE total INTEGER;
DECLARE id INTEGER;
DECLARE curs CURSOR WITH RETURN FOR 
select count,sum from sysibm.sysdummy1;

DECLARE hiercurs CURSOR FOR 
select id from tree order by id;
SET bomQuery='';
PREPARE stmt FROM bomQuery;
SET count = 0;
SET sum = 0;
set total = 0;
OPEN hiercurs;
FETCH hiercurs INTO id;
WHILE (SQLCODE <> 100) DO
SET count=count+1;

with org (level,id,name,parent_id) as
(select 1 as level,root.id,root.name,root.parent_id from tree root where root.id=id
union all
select level+1,employee.id,employee.name,employee.parent_ id from org boss, tree employee 
where level < 5 and employee.parent_id=boss.id)
select count(1) into sum from org;

SET total=total+sum;
FETCH hiercurs INTO id;
END WHILE;
CLOSE hiercurs;
OPEN curs;
END

2 个答案:

答案 0 :(得分:0)

db2中的cte似乎没有识别查询的标量结果,因此它不会让select工作(在Oracle或SQLServer上没有问题)...解决方案是打开游标并且取而代之的是FETCH INTO(而不是SELECT INTO)。

答案 1 :(得分:0)

除了rjb建议将CTE查询包含在游标中之外,您还可以将CTE填充到用户定义的函数或视图中,然后将针对该对象的直接选择编码到存储过程中。