Registriert seit: 1. Feb 2006
294 Beiträge
Delphi 2007 Professional
|
Re: Kategorisierte Struktur sortieren (stored procedure/Curs
22. Apr 2008, 15:59
Hi,
ich mische mich auch nochmal ein
Feste Stellenzahl geht auch mit meiner Lösung:
SQL-Code:
CREATE Procedure ListSubTree (@cat_id int)
as
declare @ChildID int
declare @Table Table (
pfad varchar(100),
ID INT,
PID INT,
NAME VARCHAR(1000)
)
-- 1.Zeile in die Tabelle
insert into @Table
select cat_id, cat_id, cat_pid, cat_name from cate where cat_id = @cat_id
Declare c Cursor local for select ID from @Table
open c
fetch next from c into @ChildID
while @@Fetch_status = 0 begin
-- Mit jedem Schleifendurchlauf werden in einem Abwasch ALLE Kindknoten eingefügt
insert into @Table
select t.pfad + '-' + right('0000000000'+convert(varchar, cat_id),10), cat_id, cat_pid, cat_name -- <---- hier geändert
from cate c
join @table t on t.id = c.cat_pid
where cat_pid = @ChildID
fetch next from c into @ChildID
end
close c
deallocate c
select * from @Table order by pfad
GO
Gruß
Norman
|
|
Zitat
|