这是我建立的视图其中字段的数据imgdz是不同的我想把两条合并成一条imgdz字段里面的数据为两条记录用逗号隔开请问怎么做到

解决方案 »

  1.   

    合并列值 
    --*******************************************************************************************
    表结构,数据如下: 
    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中只能用函数解决。) 
    --=============================================================================
    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 
    --1. 创建处理函数 
    CREATE FUNCTION dbo.f_strUnite(@id int) 
    RETURNS varchar(8000) 
    AS 
    BEGIN 
        DECLARE @str varchar(8000) 
        SET @str = '' 
        SELECT @str = @str + ',' + value FROM tb WHERE id=@id 
        RETURN STUFF(@str, 1, 1, '') 
    END 
    GO 
    -- 调用函数 
    SELECt id, value = dbo.f_strUnite(id) FROM tb GROUP BY id 
    drop table tb 
    drop function dbo.f_strUnite 
    go
    /* 
    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中的方法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 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) */ 
      

  2.   

    select ID,[imgdz]=stuff((select ','+[imgdz] from View_4 t where ID=View_4.ID for xml path('')), 1, 1, '') 
    from View_4 
    group by ID我这样可以查出来了 但是只有ID和imgdz的字段 要怎么查询全部字段啊
      

  3.   

    select ID,你要显示的列,[imgdz]=stuff((select ','+[imgdz] from View_4 t where ID=View_4.ID for xml path('')), 1, 1, '') 
    from View_4 
    group by ID, 你要显示的列
    --查询你要显示的列,然后再分组
      

  4.   

    如果你只有imgdz这个字段有不同值。。而其余的列都有相同的值的话。 你就把这些列都查询出来呗
      

  5.   

    select
     ID,col1,col2...,[imgdz]=stuff((select ','+[imgdz] from View_4 t where ID=View_4.ID for xml path('')), 1, 1, '') 
    from
     View_4 
    group by
     ID, col1,col2...
      

  6.   

    create table tb(fid int,fname varchar(20),fsubject varchar(20)) 
    insert into tb values(1, '张三','语文') 
    insert into tb values(1, '张三','数学')
    insert into tb values(1, '张三','历史')  
    insert into tb values(2, '李四','语文') 
    insert into tb values(2, '李四','数学')
    goselect * from tbselect tb.* from (
    select fid,fname,(select fsubject+';' from tb where t.fid=fid order by fid for xml path('')) list
    from tb t
    group by fid,fname) tb
    1 张三 语文
    1 张三 数学
    1 张三 历史
    2 李四 语文
    2 李四 数学
    1 张三 语文;数学;历史;
    2 李四 语文;数学;