码迷,mamicode.com
首页 > 数据库 > 详细

sql递归显示层级数据

时间:2017-11-17 17:00:49      阅读:423      评论:0      收藏:0      [点我收藏+]

标签:color   arch   sort   weight   parent   char   sso   font   col   

;with catChild as(select *,cast(right(00000+cast(Sort as varchar),5) as varchar(max)) as ssort 
from Category where ID = ‘123
    union all select t.*,
    cast(ssort+right(00000+cast(t.Sort as varchar),5) as varchar(max))
     from catChild, Category  t
    where catChild.ID = t.ParentID)
select * from catChild where IsVolumes=1  order by ssort,Sort


;with cte as
 (select ID,Name,ParentID,1 level,
         cast(right(00000+cast(Sort as varchar),5) as varchar(max)) as ssort
    from Category where ID = 111A 
  union all select t.ID,t.Name,t.ParentID,c.level + 1,
       cast(ssort+right(00000+cast(t.Sort as varchar),5) as varchar(max))
    from Category t
    join cte c on t.ParentID = c.ID)
select ID, Name, ParentID, level,ssort
  from cte order by ssort

 

sql递归显示层级数据

标签:color   arch   sort   weight   parent   char   sso   font   col   

原文地址:http://www.cnblogs.com/sxhlf/p/7852355.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!