嗨,我有一个像这样的代码字符串
Questions that may already have your answer 107.755.741332.1 Questions that may already have your answer 117.700.741372.1
如何通过sql查询获取107.755.741332.1
和117.700.741372.1
?
感谢您阅读我的问题
答案 0 :(得分:1)
您将使用string_split()
函数,例如SQL Server 2016+(或网络上的版本)中的函数。
您可以执行以下操作:
select ss.substr
from string_split(@str, ' ') ss(substr)
where substr like '%.%.%.%' ;
但是,SQL最不适合这种类型的字符串处理。