在Oracle中,SUBSTR
函数用于从一个字符串中提取子字符串
SUBSTR(string, start_position, [length])
参数说明:
string
:要操作的原始字符串。start_position
:子字符串开始的位置。注意,这里的索引是从1开始的,而不是从0开始。length
(可选):子字符串的长度。如果省略此参数,则默认提取至字符串末尾。以下是一些使用SUBSTR
函数的示例:
SELECT SUBSTR('Hello, World!', 1, 5) AS substring FROM DUAL;
输出结果为:
SUBSTR
------
Hello
SELECT SUBSTR('Hello, World!', 8) AS substring FROM DUAL;
输出结果为:
SUBSTR
------
World!
SELECT SUBSTR('Hello, World!', 8, 5) AS substring FROM DUAL;
输出结果为:
SUBSTR
------
World
请注意,如果提供的起始位置超出了字符串的长度,SUBSTR
函数将返回空字符串。