如果你的字段类型是varchar2可以用:substr('adsda',-3,1)char类型不行因为它是定长字符串。只能:substr('adsda',3,1)
substr('adsda',length('adsda')-2,1) 这是倒数第三个字符 's'