SQL更新列两次
我在表(Tab1)中有一个字符串列(Col1)。我想编写一个删除 '%'
或 '&' 的脚本字符串值中的字符。
为此选择如下:
SELECT REPLACE( Tab1.Col1, '&', ''),
REPLACE(Tab1.Col1, '%', '')
FROM Table1 Tab1
WHERE Tab1.Col1 like '%[&]%'
OR Tab1.Col1 like '%[%]%'
这看起来正确吗?如果是的话我如何将其转换为任何更新语句?我尝试了以下方法:
UPDATE Tab1
SET Tab1.Col1 = REPLACE( Tab1.Col1, '&', ''),
Tab1.Col1 = REPLACE (Tab1.Col1, '%', '')
FROM Table1 Tab1
WHERE Tab1.Col1 like '%[&]%'
OR Tab1.Col1 like '%[%]%'
这不起作用,因为您无法在 SET
中更新列两次。 我还有其他方法可以做到这一点吗?我知道我可能在这里做了一些愚蠢的事情,所以为我的无知道歉。
提前致谢。
I have a string column (Col1) in table (Tab1). I want to write a script that removes '%'
or '&' characters from the string values.
The select for this is the following:
SELECT REPLACE( Tab1.Col1, '&', ''),
REPLACE(Tab1.Col1, '%', '')
FROM Table1 Tab1
WHERE Tab1.Col1 like '%[&]%'
OR Tab1.Col1 like '%[%]%'
Does this seem correct? If it is how would I convert this to any update statement? I tried the following:
UPDATE Tab1
SET Tab1.Col1 = REPLACE( Tab1.Col1, '&', ''),
Tab1.Col1 = REPLACE (Tab1.Col1, '%', '')
FROM Table1 Tab1
WHERE Tab1.Col1 like '%[&]%'
OR Tab1.Col1 like '%[%]%'
This doesn't work as you cant update column twice in SET
.
Is there any other way I can do this? I know I'm probably doing something silly here so apologies for my ignorance.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这应该有效。 Replace 返回一个字符串,您可以再次将其传递给另一个替换函数。
This should work. Replace returns a string which you can again pass to another replace function.
由于您没有说明您正在使用什么 RDBMS,因此我避免使用明显不可移植的东西:
As you don't say what RDBMS you are using, I'm avoiding things that are obviously non-portable: