gpt4 book ai didi

SQL删除/替换字符串的一部分

转载 作者:行者123 更新时间:2023-12-04 05:59:44 26 4
gpt4 key购买 nike

你好我有问题

我有这种格式的字符串格式的列数据:

xxxxxxxx <***********>

我想与 xxxxxxx 有关,但摆脱 <***********> ,其中 <***********>可以是任何长度的任何类型的字符串。

到目前为止,我已经有了这个命令,但我无法理解它的其余部分。
update Claims
set ClaimInitiatedBy = REPLACE(ClaimInitiatedBy,LIKE '% <%>','')
where ClaimInitiatedBy LIKE '% <%>'

这个命令不起作用,我知道这是因为 REPLACE 函数中的第二个参数。要使其工作,第二个参数应该是什么?

如果这很重要,我正在使用 SQL Server 2008。

谢谢您的帮助。

最佳答案

declare @s as varchar(50)
set @s = 'axxxxxxxx <*****>'
select substring(@s, 1, charindex('<', @s) - 1)

输出:
axxxxxxxx 

关于SQL删除/替换字符串的一部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9068229/

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