日期:2014-05-17 浏览次数:20478 次
declare @Dept table (Code varchar(1)) insert into @Dept select 'a' union all select 'b' union all select 'c' select ''''+Code as Code from @Dept /* Code ---- 'a 'b 'c */