SUBSTR (source_string, start_position, length)
其中:
- source_string 是要提取子串的原始字符串。
- start_position 指定开始提取的位置,索引从 1 开始。
- length 是可选参数,指定要提取的子串的长度。
以下是一个简单的例子:
SELECT SUBSTR('Hello, World!', 1, 5) AS result;
这将返回结果:
SUBSTR (source_string, start_position, length)
SELECT SUBSTR('Hello, World!', 1, 5) AS result;
SELECT SUBSTR('Hello, World!', 8) AS result;