gpt4 book ai didi

SQL如何提取字符串的中间部分

转载 作者:行者123 更新时间:2023-12-02 19:16:15 28 4
gpt4 key购买 nike

我只想从此字符串中获取单位编号:

'<p>The status for the Unit # 3546 has changed from % to OUTTOVENDOR</p>'

注释始终完全相同,但单元编号发生变化。如何仅提取单位编号?

谢谢!

最佳答案

declare @String varchar(500)

set @String = '<p>The status for the Unit # 3546 has changed from % to OUTTOVENDOR</p>'

select SUBSTRING(@String, charindex('# ', @String) + 2, charindex('has changed', @String) - charindex('# ', @String) - 2)

关于SQL如何提取字符串的中间部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3678496/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com