mysql怎么获取字符串中是数字 mysql获取字符串中的数字

主机教程 建站分享 2年前 (2022-11-28) 181次浏览

文章摘要:mysql怎么获取字符串中是数字 mysql获取字符串中的数字

在mysql中获取字符串中数字的方法 具体方法如下: #获取字符串中的数字 create function d […]

在mysql中获取字符串中数字的方法

具体方法如下:

#获取字符串中的数字

create function dbo.F_Get_Number (@S varchar(100))

returns int

AS

begin

while PATINDEX('%[^0-9]%',@S)>0

begin

set @s=stuff(@s,patindex('%[^0-9]%',@s),1,'')

end

return cast(@S as int)

end

---select dbo.F_Get_Number('测试AB3C123AB5C')

GO


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:mysql怎么获取字符串中是数字 mysql获取字符串中的数字
文章链接:http://www.7966.org/post/15931.html
转载请注明出处

喜欢 (0)