如何在数据库中将“+”(加号)替换为空格?
我的数据库包含许多+号,我想用空格替换它...... 应该查询什么?
My database contains many + signs and i want to replace it with white-space....
What should be the query for that ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这会将名为“tbl”的表中名为“column”的列中的所有“+”更新为单个空格,每个“+”一个空格
如果您只需要选择显示,则相同的功能,例如
This updates all '+'s in the column named "column" in the table named "tbl" to a single white space, one for each "+"
If you only need to select for display, then same function, e.g.
更新 TABLE_NAME 设置FIELD_NAME = 替换(FIELD_NAME, '+', ' ');
文档
update TABLE_NAME set FIELD_NAME = replace(FIELD_NAME, ‘+’,‘ ’);
Documentation
对于 Oracle:替换
For Oracle: REPLACE