zoukankan      html  css  js  c++  java
  • sql 根据关系表查找相应的父子类的数据

    Create Table A
    (ID Int,
     fatherID Int,
     Name Varchar(10)
    )
    Insert A Select 1,        NULL,       'tt'
    union   All Select 2,        1,          'aa'
    union   All Select 3,        1,          'bb'
    union   All Select 4,        2,          'cc'
    union   All Select 5,        2,          'gg'
    union   All Select 6,        4,          'yy'
    union   All Select 7,        4,          'jj'
    union   All Select 8,        7,           'll'
    union   All Select 9,        NULL,  'uu'
    union   All Select 10,       9,         'oo'
    GO
    set ANSI_NULLS ON
    set QUOTED_IDENTIFIER ON
    GO
    create Function [dbo].[GetParent](@ID Int)
    Returns @Tree Table (ID Int, fatherID Int, Name Varchar(10))
    As
    Begin
    Insert @Tree Select ID, fatherID, Name From A Where ID = @ID
    While @@Rowcount > 0
    Insert @Tree Select A.ID, A.fatherID, A.Name From A A Inner Join @Tree B On A.ID = B.fatherID And A.ID Not In (Select ID From @Tree)
    Return
    End

    --測試
    Select * From dbo.GetParent(4)


       本人博客的文章大部分来自网络转载,因为时间的关系,没有写明转载出处和作者。所以在些郑重的说明:文章只限交流,版权归作者。谢谢

  • 相关阅读:
    POJ 2955 Brackets 区间DP
    POJ 3311 Hie with the Pie 最短路+状压DP
    POJ 3615 Cow Hurdles(最短路径flyod)
    hdu 3790 最短路径dijkstra(多重权值)
    poj 3254 Corn Fields 状压DP
    状压DP
    poj2411 Mondriaan's Dream 状压DP
    M: Mysterious Conch 字符串哈希
    哈希(hash)理解
    域渗透:GPP(Group Policy Preferences)漏洞
  • 原文地址:https://www.cnblogs.com/wzg0319/p/1819050.html
Copyright © 2011-2022 走看看