阅读量:0
在Oracle中,substr函数用于从一个字符串中提取子串
SUBSTR(string, start_position, [length])
参数说明:
- string:要提取子串的原始字符串。
- start_position:子串开始的位置。注意,这个位置是基于1的,而不是基于0的。例如,要从字符串的第一个字符开始提取,使用1作为start_position。
- length(可选):要提取的子串的长度。如果省略此参数,则默认提取从start_position开始直到字符串末尾的所有字符。
示例:
-- 提取从第2个字符开始的3个字符 SELECT SUBSTR('Hello, World!', 2, 3) FROM DUAL; -- 结果: 'ell' -- 提取从第5个字符开始到字符串末尾的所有字符 SELECT SUBSTR('Hello, World!', 5) FROM DUAL; -- 结果: 'o, World!'
请注意,如果start_position大于字符串的长度,substr函数将返回NULL。如果提供的长度大于剩余字符串的长度,substr函数将返回从start_position开始到字符串末尾的所有字符。