本帖最后由 guoyun911 于 2010-09-20 11:21:35 编辑

解决方案 »

  1.   

    try~
    select id ,Name 
    from dept
    where ParentId in(
    select deptid from user
    where id ='给定值')
      

  2.   

    create table #EnterPrise
    (
      Department nvarchar(50),--部门名称
      ParentDept nvarchar(50),--上级部门
      DepartManage nvarchar(30)--部门经理
    )
    insert into #EnterPrise select '技术部','总经办','Tom'
    insert into #EnterPrise select '商务部','总经办','Jeffry'
    insert into #EnterPrise select '商务一部','商务部','ViVi'
    insert into #EnterPrise select '商务二部','商务部','Peter'
    insert into #EnterPrise select '程序组','技术部','GiGi'
    insert into #EnterPrise select '设计组','技术部','yoyo'
    insert into #EnterPrise select '专项组','程序组','Yue'
    insert into #EnterPrise select '总经办','','Boss'
    --查询部门经理是Tom的下面的部门名称
    ;with hgo as
    (
       select *,0 as rank from #EnterPrise where DepartManage='Tom'
       union all
       select h.*,h1.rank+1 from #EnterPrise h join hgo h1 on h.ParentDept=h1.Department
    )
    select * from hgo
    /*
    Department           ParentDept                DepartManage      rank
    --------------- -------------------- ----------------------- -----------
    技术部               总经办                    Tom               0
    程序组               技术部                    GiGi              1
    设计组               技术部                    yoyo              1
    专项组               程序组                    Yue               2
    */
    --查询部门经理是GiGi的上级部门名称
    ;with hgo as
    (
       select *,0 as rank from #EnterPrise where DepartManage='GiGi'
       union all
       select h.*,h1.rank+1 from #EnterPrise h join hgo h1 on h.Department=h1.ParentDept
    )
    select * from hgo
    /*
    Department               ParentDept          DepartManage    rank
    -------------------- ----------------------  -----------  -----------
    程序组                   技术部                 GiGi           0
    技术部                   总经办                 Tom            1
    总经办                                          Boss           2
    */本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/ws_hgo/archive/2010/01/31/5274571.aspx
      

  3.   


    /*
    标题:SQL SERVER 2000中查询指定节点及其所有子节点的函数(表格形式显示)
    作者:爱新觉罗·毓华(十八年风雨,守得冰山雪莲花开) 
    时间:2008-05-12
    地点:广东深圳
    */create table tb(id varchar(3) , pid varchar(3) , name varchar(10))
    insert into tb values('001' , null  , '广东省')
    insert into tb values('002' , '001' , '广州市')
    insert into tb values('003' , '001' , '深圳市')
    insert into tb values('004' , '002' , '天河区')
    insert into tb values('005' , '003' , '罗湖区')
    insert into tb values('006' , '003' , '福田区')
    insert into tb values('007' , '003' , '宝安区')
    insert into tb values('008' , '007' , '西乡镇')
    insert into tb values('009' , '007' , '龙华镇')
    insert into tb values('010' , '007' , '松岗镇')
    go--查询指定节点及其所有子节点的函数
    create function f_cid(@ID varchar(3)) returns @t_level table(id varchar(3) , level int)
    as
    begin
      declare @level int
      set @level = 1
      insert into @t_level select @id , @level
      while @@ROWCOUNT > 0
      begin
        set @level = @level + 1
        insert into @t_level select a.id , @level
        from tb a , @t_Level b
        where a.pid = b.id and b.level = @level - 1
      end
      return
    end
    go--调用函数查询001(广东省)及其所有子节点
    select a.* from tb a , f_cid('001') b where a.id = b.id order by a.id
    /*
    id   pid  name       
    ---- ---- ---------- 
    001  NULL 广东省
    002  001  广州市
    003  001  深圳市
    004  002  天河区
    005  003  罗湖区
    006  003  福田区
    007  003  宝安区
    008  007  西乡镇
    009  007  龙华镇
    010  007  松岗镇(所影响的行数为 10 行)
    */--调用函数查询002(广州市)及其所有子节点
    select a.* from tb a , f_cid('002') b where a.id = b.id order by a.id
    /*
    id   pid  name       
    ---- ---- ---------- 
    002  001  广州市
    004  002  天河区(所影响的行数为 2 行)
    */--调用函数查询003(深圳市)及其所有子节点
    select a.* from tb a , f_cid('003') b where a.id = b.id order by a.id
    /*
    id   pid  name       
    ---- ---- ---------- 
    003  001  深圳市
    005  003  罗湖区
    006  003  福田区
    007  003  宝安区
    008  007  西乡镇
    009  007  龙华镇
    010  007  松岗镇(所影响的行数为 7 行)
    */drop table tb
    drop function f_cid@@ROWCOUNT:返回受上一语句影响的行数。
    返回类型:integer。
    注释:任何不返回行的语句将这一变量设置为 0 ,如 IF 语句。
    示例:下面的示例执行 UPDATE 语句并用 @@ROWCOUNT 来检测是否有发生更改的行。UPDATE authors SET au_lname = 'Jones' WHERE au_id = '999-888-7777'
    IF @@ROWCOUNT = 0
       print 'Warning: No rows were updated'结果:(所影响的行数为 0 行)
    Warning: No rows were updated/*
    标题:SQL SERVER 2005中查询指定节点及其所有子节点的方法(表格形式显示)
    作者:爱新觉罗·毓华(十八年风雨,守得冰山雪莲花开) 
    时间:2010-02-02
    地点:新疆乌鲁木齐
    */create table tb(id varchar(3) , pid varchar(3) , name nvarchar(10))
    insert into tb values('001' , null  , N'广东省')
    insert into tb values('002' , '001' , N'广州市')
    insert into tb values('003' , '001' , N'深圳市')
    insert into tb values('004' , '002' , N'天河区')
    insert into tb values('005' , '003' , N'罗湖区')
    insert into tb values('006' , '003' , N'福田区')
    insert into tb values('007' , '003' , N'宝安区')
    insert into tb values('008' , '007' , N'西乡镇')
    insert into tb values('009' , '007' , N'龙华镇')
    insert into tb values('010' , '007' , N'松岗镇')
    goDECLARE @ID VARCHAR(3)--查询ID = '001'的所有子节点
    SET @ID = '001'
    ;WITH T AS
    (
      SELECT ID , PID , NAME 
      FROM TB
      WHERE ID = @ID
      UNION ALL
      SELECT A.ID , A.PID , A.NAME 
      FROM TB AS A JOIN T AS B ON A.PID = B.ID
    )
    SELECT * FROM T ORDER BY ID
    /*
    ID   PID  NAME
    ---- ---- ----------
    001  NULL 广东省
    002  001  广州市
    003  001  深圳市
    004  002  天河区
    005  003  罗湖区
    006  003  福田区
    007  003  宝安区
    008  007  西乡镇
    009  007  龙华镇
    010  007  松岗镇(10 行受影响)
    */--查询ID = '002'的所有子节点
    SET @ID = '002'
    ;WITH T AS
    (
      SELECT ID , PID , NAME 
      FROM TB
      WHERE ID = @ID
      UNION ALL
      SELECT A.ID , A.PID , A.NAME 
      FROM TB AS A JOIN T AS B ON A.PID = B.ID
    )
    SELECT * FROM T ORDER BY ID
    /*
    ID   PID  NAME
    ---- ---- ----------
    002  001  广州市
    004  002  天河区(2 行受影响)
    */--查询ID = '003'的所有子节点
    SET @ID = '003'
    ;WITH T AS
    (
      SELECT ID , PID , NAME 
      FROM TB
      WHERE ID = @ID
      UNION ALL
      SELECT A.ID , A.PID , A.NAME 
      FROM TB AS A JOIN T AS B ON A.PID = B.ID
    )
    SELECT * FROM T ORDER BY ID
    /*
    ID   PID  NAME
    ---- ---- ----------
    003  001  深圳市
    005  003  罗湖区
    006  003  福田区
    007  003  宝安区
    008  007  西乡镇
    009  007  龙华镇
    010  007  松岗镇(7 行受影响)
    */drop table tb--注:除ID值不一样外,三个SQL语句是一样的。
      

  4.   

    if object_id('dept') is not null drop table dept
    create table dept
    (
    id int identity primary key,--部门编号
    ParentId int,--上级部门编号
    Name varchar(20) not null,--部门名称
    )insert into dept select 0,'老总'
    union all select 1,'市场部'
    union all select 1,'技术部'
    union all select 2,'市场1部'
    union all select 2,'市场2部'
    union all select 3,'技术1部'
    union all select 3,'技术2部'
    union all select 3,'技术3部'--例如给出市场部得出市场部的的下级部门的信息;with hgo as
    (
      select *,0 as depth from dept where id=2
      union all
      select d.*,h.depth+1 from dept d join hgo h on d.ParentId=h.id
    )
    select id,ParentId,Name from hgoid          ParentId    Name
    ----------- ----------- --------------------
    2           1           市场部
    4           2           市场1部
    5           2           市场2部(3 行受影响)
      

  5.   

    ;WITH T AS
    (
    select id ,ParentId,Name 
    from dept
    where ParentId in(
    select deptid from [user]
    where id =1)
      UNION ALL
      SELECT A.ID , A.ParentId , A.NAME 
      FROM dept AS A JOIN T AS B ON A.ParentId = B.ID
    )
    SELECT * FROM T ORDER BY IDid          ParentId    Name
    ----------- ----------- --------------------
    2           1           市场部
    3           1           技术部
    4           2           市场1部
    5           2           市场2部
    6           3           技术1部
    7           3           技术2部
    8           3           技术3部(7 row(s) affected)
      

  6.   

    7#的递归能够满足LZ的要求
    上面给出的测试是userid=1的情况,其他情况刚我试了一下,也是没有问题的。
      

  7.   

    谢谢你们的帮助,我消化一下,一会给分!能告诉我with关键字的用途和用法么?文档上的字眼貌似文言文一般。。看的不明不白的,谢谢啦!
      

  8.   


    百度查找  with cte as
      

  9.   


    hugo   这东西要google,哈哈
      

  10.   

    你的是什么数据库,版本?
    我本机sql server 2008,测试没问题。在2005上也应该是没有问题的。
      

  11.   

    create table dept
    (
    id int identity primary key,--部门编号
    ParentId int,--上级部门编号
    Name nvarchar(20) not null,--部门名称
    )create table [user]
    (
    id int identity primary key,--用户表主键
    deptid int foreign key references dept(id),--部门ID
    name varchar(20) not null --用户名
    )INSERT INTO dept
    SELECT 0,N'老总'
    UNION ALL
    SELECT 1,N'市场部'
    UNION ALL
    SELECT 1,N'技术部'
    UNION ALL
    SELECT 2,N'市场1部'
    UNION ALL
    SELECT 2,N'市场2部'
    UNION ALL
    SELECT 3,N'技术1部'
    UNION ALL
    SELECT 3,N'技术2部'
    UNION ALL
    SELECT 3,N'技术3部'INSERT INTO [USER]
    SELECT 1,'admin'
    UNION ALL
    SELECT 2,'sc_manager'
    UNION ALL
    SELECT 3,'js_manager'
    UNION ALL
    SELECT 6,'js1_manager'
     
    ;WITH T AS
    (
      select id ,ParentId,Name 
    from dept
    where ParentId in(
    select deptid from [user]
    where id =1)
      UNION ALL
      SELECT A.ID , A.ParentId , A.NAME 
      FROM dept AS A JOIN T AS B ON A.ParentId = B.ID
    )
    SELECT * FROM T ORDER BY IDid          ParentId    Name
    ----------- ----------- --------------------
    2           1           市场部
    3           1           技术部
    4           2           市场1部
    5           2           市场2部
    6           3           技术1部
    7           3           技术2部
    8           3           技术3部(7 row(s) affected)
      

  12.   


    Sqlserver2000和2005都报错!
      

  13.   

    那能不能提供一份sqlserver2000的查询方法!
    小弟在此谢谢啦
      

  14.   

    看来sqlserver2000得自己想办法写算法了唉上面报错原因找到了,因为with T as (...)
    这种语句必须with T as () select * from T 这样执行,不能单独执行with T as (...)