本帖最后由 a260881071 于 2009-12-30 12:05:06 编辑

解决方案 »

  1.   

    SELECT CASE WHEN CHARINDEX(','+@NAME+',',','+NAME+',')>0 THEN NAME ELSE NAME+','+@NAME END AS NAME FROM TB
      

  2.   

     (不要高估你的汉语表达能力或者我的汉语理解能力)
       建议你列出你的表结构,并提供测试数据以及基于这些测试数据的所对应正确结果。
       参考一下这个贴子的提问方式http://topic.csdn.net/u/20091130/20/8343ee6a-417c-4c2d-9415-fa46604a00cf.html
       
       1. 你的 create table xxx .. 语句
       2. 你的 insert into xxx ... 语句
       3. 结果是什么样,(并给以简单的算法描述)
       4. 你用的数据库名称和版本(经常有人在MS SQL server版问 MySQL)
       
       这样想帮你的人可以直接搭建和你相同的环境,并在给出方案前进行测试,避免文字描述理解上的误差。   
      

  3.   

    insert into table1(uname)
    select top 1 'dr' from table1 where not exists (select 1 from table1 where uname='dr')
      

  4.   

    declare @id as varchar(10)
    set @id = 'dr'
    select case when charindex(','+@id+',',',' + col + ',') > 0 then col
                else col + ',' + @id
            end
    from tb
      

  5.   

    1、先用sql 语句判断是否存在。
    2、如果存在,更新后面'',不存在,追加。用一个更新语句即可。