oracle中实现截取字符串(substr)、查找字符串位置(instr)、替换字符串(replace)

 (1)oracle中实现截取字符串:substrhtml substr(string, start_position, [length])sql 其中,string是元字符串,start_position为开始位置,length是可选项,表示子字符串的位数。 oracle 例子:app substr('ABCDEFG', 0);    -- 返回结果是:ABCDEFG,从0位开始截取后面全部
相关文章
相关标签/搜索