oracle substr
时间: 2023-10-17 13:33:09 浏览: 91
oracle中 substring函数的使用
Oracle的SUBSTR函数用于从字符串中提取子字符串。它的语法如下:
SUBSTR(string, start_position, [length])
其中,string是要提取子字符串的源字符串,start_position是开始提取的位置,length是要提取的子字符串的长度(可选参数)。
示例用法:
1. 提取从第2个位置开始的子字符串:
SELECT SUBSTR('Hello World', 2) FROM dual;
结果:'ello World'
2. 提取从第6个位置开始长度为5的子字符串:
SELECT SUBSTR('Hello World', 6, 5) FROM dual;
结果:' World'
请注意,Oracle中的字符串索引是从1开始的,而不是从0开始的。
阅读全文