gpt4 book ai didi

sql - 在 T-SQL 中替换没有游标的字符串中出现的字符串列表

转载 作者:行者123 更新时间:2023-12-03 01:13:40 25 4
gpt4 key购买 nike

天哪,这真是一口……

我想从字符串中解析标记。标记可以是单词或短语,我想要的是将任何标记的每次出现替换为字符串。我想在不使用光标的情况下执行此操作。

例如。

declare @str varchar(256) = 'I want this type to be left and of type to be gone. the and a should also be gone of course remains'

create table #Tokens (token varchar(50))
go

insert table (token) values ('of type')
insert table (token) values ('a')
insert table (token) values ('the')
insert table (token) values ('to')
insert table (token) values ('of')
go

我想要的是一个内联函数,它将用“”(空字符串)替换字符串中找到的任何标记列表。

最佳答案

一个非常简单的答案是使用以下内容:

USE tempdb;

DECLARE @str VARCHAR(256);

SET @str = 'I want this type to be left and of type to be gone.
the and a should also be gone of course remains';

CREATE TABLE #Tokens (token VARCHAR(50));
INSERT INTO #Tokens (token) VALUES ('of type');
INSERT INTO #Tokens (token) VALUES ('a');
INSERT INTO #Tokens (token) VALUES ('the');
INSERT INTO #Tokens (token) VALUES ('to');
INSERT INTO #Tokens (token) VALUES ('of');

SELECT @str = REPLACE(@str, token, '')
FROM #Tokens;

SELECT @str;

DROP TABLE #Tokens;

返回结果:

I wnt this type  be left nd   be gone.  nd  should lso be gone  course remins

关于sql - 在 T-SQL 中替换没有游标的字符串中出现的字符串列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18881913/

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