码迷,mamicode.com
首页 > 数据库 > 详细

Oralce给字段追加字符,以及oracle 给字段替换字符

时间:2018-11-27 19:27:40      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:style   family   nbsp   update   name   oralce   ||   字符   内容   

追加字符

update table_name  t

set t.DIST_NAME = t.DIST_NAME || ‘市‘

where PROD_NAME=‘爱立信‘

table_name  :表名   DIST_NAME:要追加字符的字段      ‘市‘: 追加字符的内容  where 后面为条件 (可不写)

 

替换字符

update table set 字段 =replace(字段,‘hello’,‘你好’) where 条件 

table 为表名    hello 为原来的字符  你好为 要更改的字符    

 

Oralce给字段追加字符,以及oracle 给字段替换字符

标签:style   family   nbsp   update   name   oralce   ||   字符   内容   

原文地址:https://www.cnblogs.com/JIKes/p/10027770.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!