Oracle substr 函数如何提取子串

avatar
作者
筋斗云
阅读量: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开始到字符串末尾的所有字符。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!