zoukankan      html  css  js  c++  java
  • SQL2008使用表达式递归查询

    --由父项递归下级
    with cte(id,parentid,text)
    as 
    (--父项
    select id,parentid,text from treeview where parentid = 450
    union all
    --递归结果集中的下级
    select t.id,t.parentid,t.text from treeview as t 
    inner join cte as c on t.parentid = c.id
    )
    select id,parentid,text from cte
    
    ---------------------
    
    --由子级递归父项
    with cte(id,parentid,text)
    as 
    (--下级父项
    select id,parentid,text from treeview where id = 450
    union all
    --递归结果集中的父项
    select t.id,t.parentid,t.text from treeview as t 
    inner join cte as c on t.id = c.parentid
    )
    select id,parentid,text from cte
    
    
    参考:http://msdn.microsoft.com/zh-cn/library/ms186243.aspx

  • 相关阅读:
    架构师之路
    责任链设计模式
    Junit框架分析
    线程详解
    课程总结
    IO流
    Java第四次作业
    Character string
    实训
    实训SI
  • 原文地址:https://www.cnblogs.com/lilin/p/1729753.html
Copyright © 2011-2022 走看看