SQL 中按单词排序

发布于 2024-11-08 03:50:02 字数 137 浏览 1 评论 0原文

例如,

我有单词“John Roshan”,我想按每个单词的第一个字母来排列此顺序,这意味着上述单词的输出应该是“Roshan John”。

我想用 SQL 来做,

请帮我解决这个问题。

提前致谢

For E.g

I have word "John Roshan" i want to arrange this order by first alphbet of the each word that means the output of the above word should be "Roshan John".

I want to do it with SQL

Please help me its urget.

Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

禾厶谷欠 2024-11-15 03:50:02
declare @S varchar(50)
set @S = 'John Roshan 2000'

;with cte as
(
  select 
    1 as P1,
    charindex(' ', @S+' ', 1) as P2
  union all
  select
    C.P2+1,
    charindex(' ', @S+' ', C.P2+1) as P2
  from cte as C
  where charindex(' ', @S+' ', C.P2+1) > 0
)

select
(
  select substring(@S, P1, P2-P1)+' '
  from cte
  order by substring(@S, P1, P2-P1)
  for xml path(''), type
).value('.', 'varchar(50)')  
declare @S varchar(50)
set @S = 'John Roshan 2000'

;with cte as
(
  select 
    1 as P1,
    charindex(' ', @S+' ', 1) as P2
  union all
  select
    C.P2+1,
    charindex(' ', @S+' ', C.P2+1) as P2
  from cte as C
  where charindex(' ', @S+' ', C.P2+1) > 0
)

select
(
  select substring(@S, P1, P2-P1)+' '
  from cte
  order by substring(@S, P1, P2-P1)
  for xml path(''), type
).value('.', 'varchar(50)')  
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文