提取第 n 个单词以后
如何在 sql server 中提取从第 n 个单词开始的单词?
例如。
|描述 |
|这件衣服真好看|
从第四个单词开始,将输出“nice dress”
how do i extract words from the nth word onwards in sql server?
eg.
| Description |
| This is a nice dress |
extracting the 4th word onwards, would output 'nice dress'
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您自己构建该方法,您可以找到第三个空格的字符串位置,然后从该位置获取正确的字符串。
编辑:charindex() 和 substring() 的组合等。
If you build the method yourself, you could find the string position for the third space, and then take the right string from that position.
Edit: combination of charindex() and substring(), etc.