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

相关文章:

  • 2021-12-12
  • 2022-02-02
  • 2022-01-16
  • 2022-01-02
  • 2021-12-09
  • 2022-12-23
猜你喜欢
  • 2021-11-28
  • 2021-12-26
  • 2021-11-18
  • 2021-08-27
  • 2021-10-18
  • 2021-06-02
相关资源
相似解决方案