如何在SQL中提取字符串中用下划线分隔的第二个单词?
我试图仅提取字符串中的第二个单词。 例如,
Name[Column Name]
Patrick_Andrew_Marsh
Rajesh_Kumar_Sinha
我想从列中提取 Andrew 和 Kumar,对于所有其他名称也类似。我该怎么做?
I am trying to extract only the second word in a string.
For example
Name[Column Name]
Patrick_Andrew_Marsh
Rajesh_Kumar_Sinha
I want to extract Andrew and Kumar from the column and similarly for all the other names. How do I do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
split
函数来实现此目的You can use the
split
function for this purpose