Goodspeed

导航

中文排序

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

posted on 2004-03-03 12:53  Goodspeed  阅读(532)  评论(0编辑  收藏  举报