substr 函數用于從字符串中提取子字符串,語法為 substr(string, start, length)。需要指定源字符串、起始位置和長度(可選),函數從指定位置開始提取指定長度的子字符串。例如,substr(‘hello world’, 1, 5) 返回 “hello”,substr(‘hello world’, 7) 返回 “world”。
Oracle 中 SUBSTR 函數的用法
什么是 SUBSTR 函數?
SUBSTR 函數用于從字符串中提取子字符串。
語法:
<code>SUBSTR(string, start, length)</code>
登錄后復制
其中:
string 是源字符串。
start 是提取子字符串的起始位置(從 1 開始)。
length 是子字符串的長度。
用法:
使用 SUBSTR 函數時,需要指定以下參數:
string:要從中提取子字符串的源字符串。
start:從其開始提取子字符串的字符位置。對于第一個字符,start 為 1。
length(可選):要提取的子字符串的長度。如果不指定,將提取從 start 位置到字符串末尾的所有字符。
示例:
以下是 SUBSTR 函數在 Oracle 中的一些示例用法:
<code>-- 從 "Hello World" 中提取 "Hello" SELECT SUBSTR('Hello World', 1, 5) FROM dual; -- 從 "Hello World" 中提取 "World" SELECT SUBSTR('Hello World', 7) FROM dual; -- 從 "Hello World" 中提取從第 7 個字符開始的所有文本 SELECT SUBSTR('Hello World', 7, LENGTH('Hello World') - 6) FROM dual;</code>
登錄后復制
注意:
SUBSTR 函數從 1 開始對字符進行計數。
如果 start 或 length 為負數,則返回空字符串。
如果 start 比字符串長度大,則返回空字符串。
如果 length 比剩余字符串的長度長,則返回剩余字符串。