Oracle 的 SUBSTR
函数用于从一个字符串中提取子字符串。它有两种语法形式,分别是:
SUBSTR(string, start_position)
SUBSTR(string, start_position, length)
其中,string
是要操作的原始字符串,start_position
是子字符串开始的位置(从 1 开始计数),length
是子字符串的长度(可选参数)。
以下是一些示例:
-- 使用 SUBSTR 函数从字符串中提取子字符串
SELECT SUBSTR('Hello, World!', 1, 5) AS substring FROM DUAL; -- 结果为 'Hello'
SELECT SUBSTR('Hello, World!', 8) AS substring FROM DUAL; -- 结果为 'World!'
在这些示例中,我们使用了 SUBSTR
函数从字符串 ‘Hello, World!’ 中提取子字符串。第一个查询使用了两个参数的形式,从位置 1 开始提取 5 个字符,结果为 ‘Hello’。第二个查询使用了一个参数的形式,从位置 8 开始提取剩余的所有字符,结果为 ‘World!’。