oracle中,我要更新一个字段,字段内容例如:d12325323 我想在这个字符串的中间加一位0,要如何操作!

2024年11月22日 18:15
有2个网友回答
网友(1):

用substr分一下
比方说你要在第五位加0
那就是update tabName set colName = substr(colName e,0,5) ||'0'||substr(colName e,5,length(colName))

网友(2):

最简单的方法就是在数据库改