数据库设计如下:
  公司表:
   公司编号    公司名称     1           北京公司 
    2           上海公司
    3            广州公司
  招聘表:     编号    公司编号     招聘岗位       1        1            工人
       2        1             主任
        3        2             程序员
        4         2            经理
        5        3             销售
        6        4             客服
  
 要的效果:
          
          公司名称          招聘岗位
 
          北京公司          工人|主任|
          上海公司          程序员|经理
          广州公司          销售|客服|

解决方案 »

  1.   

    select a.*,
        招聘岗位=stuff((select '|'+招聘岗位 from 招聘表 where 公司编号=a.公司编号 for xml path('')),1,1,'')
    from 公司表 a
      

  2.   

    ---测试数据---
    if object_id('[公司表]') is not null drop table [公司表]
    go
    create table [公司表]([公司编号] int,[公司名称] varchar(8))
    insert [公司表]
    select 1,'北京公司' union all
    select 2,'上海公司' union all
    select 3,'广州公司'
    go
    if object_id('[招聘表]') is not null drop table [招聘表]
    go
    create table [招聘表]([编号] int,[公司编号] int,[招聘岗位] varchar(6))
    insert [招聘表]
    select 1,1,'工人' union all
    select 2,1,'主任' union all
    select 3,2,'程序员' union all
    select 4,2,'经理' union all
    select 5,3,'销售' union all
    select 6,3,'客服'
    go---查询---
    select
      a.公司名称,
      招聘岗位=stuff((select '|'+招聘岗位 from 招聘表 where 公司编号=a.公司编号 for xml path('')),1,1,'')
    from 公司表 a
    group by a.公司名称,a.公司编号
    ---结果---
    公司名称     招聘岗位
    -------- -----------------------
    北京公司     工人|主任
    广州公司     销售|客服
    上海公司     程序员|经理(3 行受影响)
      

  3.   

    合并列值后联查一下就可以了。--合并列值
    --原著:邹建
    --改编:爱新觉罗.毓华(十八年风雨,守得冰山雪莲花开)  2007-12-16  广东深圳--表结构,数据如下:
    /*
    id    value 
    ----- ------ 
    1    aa 
    1    bb 
    2    aaa 
    2    bbb 
    2    ccc 
    */
    --需要得到结果:
    /*
    id    values 
    ------ ----------- 
    1      aa,bb 
    2      aaa,bbb,ccc 
    即:group by id, 求value 的和(字符串相加)
    */
    --1. 旧的解决方法(在sql server 2000中只能用函数解决。) 
    --1. 创建处理函数
    create table tb(id int, value varchar(10)) 
    insert into tb values(1, 'aa') 
    insert into tb values(1, 'bb') 
    insert into tb values(2, 'aaa') 
    insert into tb values(2, 'bbb') 
    insert into tb values(2, 'ccc') 
    go create function dbo.f_str(@id int) 
    returns varchar(8000) 
    as 
    begin 
        declare @r varchar(8000) 
        set @r = '' 
        select @r = @r + ',' + value from tb where id=@id 
        return stuff(@r, 1, 1, '') 
    end 
    go -- 调用函数
    SELECt id, value = dbo.f_str(id) FROM tb GROUP BY id drop table tb 
    drop function dbo.f_str /* 
    id          value      
    ----------- ----------- 
    1          aa,bb 
    2          aaa,bbb,ccc 
    (所影响的行数为2 行)
    */ --2、另外一种函数. 
    create table tb(id int, value varchar(10)) 
    insert into tb values(1, 'aa') 
    insert into tb values(1, 'bb') 
    insert into tb values(2, 'aaa') 
    insert into tb values(2, 'bbb') 
    insert into tb values(2, 'ccc') 
    go --创建一个合并的函数
    create function f_hb(@id int) 
    returns varchar(8000) 
    as 
    begin 
      declare @str varchar(8000) 
      set @str = '' 
      select @str = @str + ',' + cast(value as varchar) from tb where id = @id 
      set @str = right(@str , len(@str) - 1) 
      return(@str) 
    End 
    go --调用自定义函数得到结果:
    select distinct id ,dbo.f_hb(id) as value from tb drop table tb 
    drop function dbo.f_hb /* 
    id          value      
    ----------- ----------- 
    1          aa,bb 
    2          aaa,bbb,ccc 
    (所影响的行数为2 行)
    */ --2. 新的解决方法(在sql server 2005中用OUTER APPLY等解决。) 
    create table tb(id int, value varchar(10)) 
    insert into tb values(1, 'aa') 
    insert into tb values(1, 'bb') 
    insert into tb values(2, 'aaa') 
    insert into tb values(2, 'bbb') 
    insert into tb values(2, 'ccc') 
    go 
    -- 查询处理
    select * from(select distinct id from tb)a outer apply( 
            select [values]= stuff(replace(replace( 
                ( 
                    select value from tb n 
                    where id = a.id 
                    for xml auto 
                ), ' <N value="', ','), '"/>', ''), 1, 1, '') 
    )N 
    drop table tb /* 
    id          values 
    ----------- ----------- 
    1          aa,bb 
    2          aaa,bbb,ccc (2 行受影响) 
    */ --SQL2005中的方法
    create table tb(id int, value varchar(10)) 
    insert into tb values(1, 'aa') 
    insert into tb values(1, 'bb') 
    insert into tb values(2, 'aaa') 
    insert into tb values(2, 'bbb') 
    insert into tb values(2, 'ccc') 
    go select id, [values]=stuff((select ','+[value] from tb t where id=tb.id for xml path('')), 1, 1, '') 
    from tb 
    group by id /* 
    id          values 
    ----------- -------------------- 
    1          aa,bb 
    2          aaa,bbb,ccc (2 row(s) affected) */ drop table tb
      

  4.   


    不太明白 for xml path('')  这句是什么意思。劳烦大哥给解释解释。理论解释就可以。