plsql截取字符串字段中的某個字符段

截取字符串 字符串s=" hello world  ! (name) "字符串 若是要截取括號中的字符串能夠採起以下方法。table select substr(s,instr(s,'(')+1,instr(s,')')-instr(s,'(')-1) from table;select 分析下:方法        substr中出了字符串參數外另外兩個參數是開始位置和截取長度。tab      
相關文章
相關標籤/搜索