[SQL] 生成无级树
摘要:
--处理示例--示例数据create table tb(ID int,Name varchar(10),ParentID int)insert tb select 1,'AAAA' ,0union all select 2,'BBBB' ,0union all select 3,'CCCC' ,0union all select 4,'AAAA-1' ,1union all ... 阅读全文
posted @ 2004-09-16 14:54 Goodspeed 阅读(1655) 评论(0) 推荐(0) 编辑