中文排序
Declare @t table(pno int, plist nvarchar(256))
insert into @t select 10 ,N'第二部'
union all select 2,N'第一部'
union all select 21,N'第三部 '
union all select 3 ,N'第一部'
union all select 15,N'第二部'
select rtrim(ltrim(plist)) as plist from @t
group by plist
order by plist COLLATE Chinese_PRC_Stroke_ci_as
浙公网安备 33010602011771号