id  f_id name
1    0   服务器
2    1   PHP
3    1   jsp
4    0   客户端
5    4   js
6    4   jquery用什么SQL语句能一下子查询出来  
服务器:PHP JSP
客户端:js jquery 呢

解决方案 »

  1.   


    /*
    标题:SQL SERVER 2000中查询指定节点及其所有子节点的函数(字符串形式显示)
    作者:爱新觉罗·毓华(十八年风雨,守得冰山雪莲花开) 
    时间:2010-02-02
    地点:新疆乌鲁木齐
    */--生成测试数据 
    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(10)) returns varchar(8000) 
    as 
    begin 
      declare @i int , @ret varchar(8000) 
      declare @t table(id varchar(10) , pid varchar(10) , level int) 
      set @i = 1 
      insert into @t select id , pid , @i from tb where id = @id 
      while @@rowcount <> 0 
      begin 
        set @i = @i + 1 
        insert into @t select a.id , a.pid , @i from tb a , @t b where a.pid = b.id and b.level = @i - 1
      end 
      select @ret = isnull(@ret , '') + id + ',' from @t 
      return left(@ret , len(@ret) - 1)
    end 
    go --执行查询 
    select id , children = isnull(dbo.f_cid(id) , '') from tb group by iddrop table tb
    drop function f_cid/*
    id   children                               
    ---- ---------------------------------------
    001  001,002,003,004,005,006,007,008,009,010
    002  002,004
    003  003,005,006,007,008,009,010
    004  004
    005  005
    006  006
    007  007,008,009,010
    008  008
    009  009
    010  010(所影响的行数为 10 行)
    */
    /*
    标题: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'松岗镇')
    go;with t as
    (
        select id , cid = id from tb 
        union all
        select t.id , cid = tb.id 
        from t join tb on tb.pid = t.cid 
    )
    select id , cid = STUFF((SELECT ',' + rtrim(cid) FROM t WHERE id = tb.id FOR XML PATH('')) , 1 , 1 , '')
    from tb
    group by id
    order by id
    /*
    id   cid
    ---- ---------------------------------------
    001  001,002,003,005,006,007,008,009,010,004
    002  002,004
    003  003,005,006,007,008,009,010
    004  004
    005  005
    006  006
    007  007,008,009,010
    008  008
    009  009
    010  010(10 行受影响)
    */;with t as
    (
        select id , name , cid = id , path = cast(name as nvarchar(100)) from tb 
        union all
        select t.id , t.name , cid = tb.id , path = cast(tb.name as nvarchar(100))
        from t join tb on tb.pid = t.cid 
    )
    select id , name , 
           cid = STUFF((SELECT ',' + rtrim(cid) FROM t WHERE id = tb.id FOR XML PATH('')) , 1 , 1 , ''),
           path = STUFF((SELECT ',' + path FROM t WHERE id = tb.id FOR XML PATH('')) , 1 , 1 , '')
    from tb
    group by id , name
    order by id
    /*
    id   name       cid                                         path
    ---- ---------- ------------------------------------------- ---------------------------------------------------------------------
    001  广东省     001,002,003,005,006,007,008,009,010,004     广东省,广州市,深圳市,罗湖区,福田区,宝安区,西乡镇,龙华镇,松岗镇,天河区
    002  广州市     002,004                                     广州市,天河区
    003  深圳市     003,005,006,007,008,009,010                 深圳市,罗湖区,福田区,宝安区,西乡镇,龙华镇,松岗镇
    004  天河区     004                                         天河区
    005  罗湖区     005                                         罗湖区
    006  福田区     006                                         福田区
    007  宝安区     007,008,009,010                             宝安区,西乡镇,龙华镇,松岗镇
    008  西乡镇     008                                         西乡镇
    009  龙华镇     009                                         龙华镇
    010  松岗镇     010                                         松岗镇(10 行受影响)
    */drop table tb
      

  2.   

    select name from tb
    where tb.fid in(
    select id from tb
    where name='服务器')   -------------
    union all
    select name from tb
    where tb.fid in(
    select id from tb
    where name='客户端') 
      

  3.   

    呵呵,可能是我没表达清楚吧 重新表达:
    id f_id name
    1   0   服务器
    2   1   PHP
    3   1   jsp
    4   0   客户端
    5   4   js
    6   4   jquery这是一个分类的列表,当然服务器和客户端,都是我自己写上去的,以后用户可能会改成其他的 可能会把服务器改成 WINDOWS  把客户端改成linux!!这样的情况下 用一条SQL语句怎么能把所有的都查询出来呢?结果会得到
    服务器:PHP JSP
    客户端:js jquery   这样的一个!!!因为我现在在做一个导航,导航有的放上去 js会自动出现一个下拉列表 这个下拉列表里面的东西就是该名称下的子类。。
      

  4.   


    declare @tb table(id int, f_id int, name varchar(100))
    insert @tb
    select 1, 0, '服务器'
    union all
    select 2, 1, 'PHP'
    union all
    select 3, 1, 'jsp'
    union all
    select 4, 0, '客户端'
    union all
    select 5, 4, 'js'
    union all
    select 6, 4, 'jquery'
    select name + ':', 
    sub_name = stuff((select ',' + name from @tb where a.id = f_id for xml path('')),1,1,'')  
    from @tb a
    where f_id = 0
      

  5.   

    我2楼不是把sql 2000和2005的方法都告诉你了?
      

  6.   

    mySQL的语法与SQL语法不同啊。
    实在一条一行,就得写存储过程了。
      

  7.   

    select name + ':', names=stuff((select '  ' +name from t where a.id=f_id for xml path('')),1,1,'') from t a where f_id=0