如何从SQL Server中的单行提取多个字符串

如何从SQL Server中的单行提取多个字符串,第1张

如何从SQL Server中的单行提取多个字符串

您可以递归使用cte去除字符串。

declare @T table (id int, [text] nvarchar(max))insert into @T values (1, 'Peter (Peter@peter.de) and Marta (marty@gmail.com) are doing fine.')insert into @T values (2, 'Nothing special here')insert into @T values (3, 'Another email address (me@my.com)');with cte([text], email)as(    select        right([text], len([text]) - charindex(')', [text], 0)),        substring([text], charindex('(', [text], 0) + 1, charindex(')', [text], 0) - charindex('(', [text], 0) - 1)     from @T    where charindex('(', [text], 0) > 0    union all    select        right([text], len([text]) - charindex(')', [text], 0)),        substring([text], charindex('(', [text], 0) + 1, charindex(')', [text], 0) - charindex('(', [text], 0) - 1)     from cte    where charindex('(', [text], 0) > 0)select emailfrom cte

结果

emailPeter@peter.deme@my.commarty@gmail.com


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5649773.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存