简单来说吧,主要是使用replace函数。
修改之前,数据库表某字段格式如下:
ftp:/10.10.18..211:/ftp/file
现在需要修改此字段,增加一个IP,将冒号改为/:
ftp://10.10.18.222|10.10.18.211/ftp/file
命令如下:
update t_dict_file set dictftppath=replace(dictftppath,'10.10.18.221:','10.10.18.222|10.10.18.211/')
简单来说吧,主要是使用replace函数。
修改之前,数据库表某字段格式如下:
ftp:/10.10.18..211:/ftp/file
现在需要修改此字段,增加一个IP,将冒号改为/:
ftp://10.10.18.222|10.10.18.211/ftp/file
命令如下:
update t_dict_file set dictftppath=replace(dictftppath,'10.10.18.221:','10.10.18.222|10.10.18.211/')
本文标题:Oracle update更新字段某一部分
本文链接:https://www.haomeiwen.com/subject/amknlqtx.html
网友评论