oracle中的substr怎么使用?
substr Oracle中的截取字符串函數(shù)。 語法如下: substr( string, start_position, [ length ] ) 參數(shù)分析: string 字符串值 start_position 截取字符串的初始位置, Number型,start_position為負(fù)數(shù)時(shí),表示從字符串右邊數(shù)起。 length 截取位數(shù),Number型 其中,length為可選,如果length為空(即不填)則返回start_position后面的所有字符。 意思就是: 從start_position開始,取出length個(gè)字符并返回取出的字符串。 具體參考示例。 示例: SELECT substr('This is a test', 6, 2) FROM dual 返回 'is' substr('SyranMo have a dream', -8, 2)