格式化来自 Oracle Select 查询的字符串

发布于 2024-10-20 04:31:36 字数 238 浏览 2 评论 0原文

假设当我运行以下查询时,

SELECT NAME 
  FROM EMP;

它返回以下 2 行。

NAME
------------
Jan Jones
Arne Barnie

但我希望它采用以下格式

J. Jones
A. Barnie

我怎样才能得到它?

Lets say when I run the following query,

SELECT NAME 
  FROM EMP;

It return the following 2 rows.

NAME
------------
Jan Jones
Arne Barnie

But I wanted it in the following format

J. Jones
A. Barnie

How I can get that?

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

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

发布评论

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

评论(2

酒几许 2024-10-27 04:31:36

使用 regexp_replace 应该可以实现:

with names as (
  select 'Jan Jones'   name from dual union all
  select 'Arne Barnie' name from dual
)
select
  regexp_replace(name, '(.)[[:alpha:]]* *([[:alpha:]]*)', '\1. \2') name
from
  names;

或者,如果您更喜欢 \X 表示法而不是 [[:...:]] 表示法,你可以使用

regexp_replace(name, '(.)\w* *(\w*)', '\1. \2') 

It should be possible with regexp_replace:

with names as (
  select 'Jan Jones'   name from dual union all
  select 'Arne Barnie' name from dual
)
select
  regexp_replace(name, '(.)[[:alpha:]]* *([[:alpha:]]*)', '\1. \2') name
from
  names;

Alternatively, if you prefer the \X notation over the [[:...:]] notation, you can use

regexp_replace(name, '(.)\w* *(\w*)', '\1. \2') 
老旧海报 2024-10-27 04:31:36

没有像 DECODE 这样的捷径可以做到这一点
我认为这是你最好的选择。

There are no short cuts like DECODE to do this
I think this is your best bet.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文