ORACLE:- SELECT First Names ,通过删除第一个单词后的空格
甲骨文:- 在表中,名字如下
Binda E
Reven O
Drew J
ANDAL J
WILL Lee
Chad Hardee
我想选择以下格式的名字
Binda
Reven
Drew
ANDAL
WILL
Chad
我正在使用以下查询,但没有运气
SELECT first_name, SUBSTR(first_name, REGEXP_INSTR('first_name','[^ ]+', 1, 1) ) FROM contact.user_names
请建议。
ORACLE:-
In the table the First Names are as follows
Binda E
Reven O
Drew J
ANDAL J
WILL Lee
Chad Hardee
I want to select First names in the following format
Binda
Reven
Drew
ANDAL
WILL
Chad
I am using the following Query, but a having no luck
SELECT first_name, SUBSTR(first_name, REGEXP_INSTR('first_name','[^ ]+', 1, 1) ) FROM contact.user_names
Kindly suggest.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
NVL(substr(名字, 1, instr(名字,' ')), 名字)
NVL(substr(first_name, 1, instr(first_name,' ')), first_name)