数据库字符串拼接


表wf_oasheetmain中有一字段file_code
某条记录(id = '4028bce61cd516d6011cd51a8a650002')
的file_code值为 "鄂运维【2008】7号"
如果想将它 改为   "鄂运维[2008]7号"
修改的SQL语句怎么写呢?



其中一种写法如下:
update wf_oasheetmain set file_code = substr(file_code,0,3)||'【'||substr(file_code,5,4)||'】'||substr(file_code,10)
where id = '4028bce61cd516d6011cd51a8a650002'

你可能感兴趣的:(sql)