--测试环境
declare @t table (a varchar(50))
insert into @t select '20050818-0008'
union all select '20050823-0002'
union all select '20050825-0023'
union all select '20050826-0001'
union all select '20050826-0018'
union all select '20050822-0032'
--更新语句
update @t set a=''''+a+''''+','
--查看结果
select * from @t
--结果
a                                                  
-------------------------------------------------- 
'20050818-0008',
'20050823-0002',
'20050825-0023',
'20050826-0001',
'20050826-0018',
'20050822-0032',(所影响的行数为 6 行)