我有一个类似于word1 - null - word3
的字符串,是否可以编写一个sql查询来从文本字符串中删除单词null
?
由于
答案 0 :(得分:0)
您可以使用REPLACE
功能:
DECLARE @Test AS VARCHAR(32)
SELECT @Test = 'word1 - null - word3'
SELECT REPLACE(@Test, 'null - ', '')
答案 1 :(得分:0)
使用REPLACE
。
<强>查询强>
declare @str as varchar(50);
set @str = 'word1 - null - word3';
select replace(@str,'null','');