在Oracle中,SUBSTR
函數用于提取字符串的子串。其語法如下:
SUBSTR(string, start_position, length)
string
是要提取子串的字符串。start_position
是子串的起始位置,從1開始計數。length
是要提取的子串的長度。如果不指定length
,則會返回從start_position
到字符串末尾的所有字符。例如,假設我們有一個字符串'Hello World'
,我們想要提取World
這個子串,可以這樣寫:
SELECT SUBSTR('Hello World', 7) FROM dual;
這將返回World
。