在Oracle中,SUBSTR函数用于从字符串中提取子字符串。
语法:
SUBSTR(string, start_position, [length])
参数说明:
string:要提取子字符串的字符串。
start_position:指定开始提取的位置,从 1 开始计数。
length:可选参数,指定要提取的子字符串的长度。如果省略该参数,则提取从 start_position 开始到字符串末尾的所有字符。
示例:
SELECT SUBSTR(‘Hello World’, 7) FROM dual;
结果:‘World’
SELECT SUBSTR(‘Hello World’, 7, 5) FROM dual;
结果:‘World’
SELECT SUBSTR(‘Hello World’, 7, 3) FROM dual;
结果:‘Wor’
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: oracle怎么将查询结果导出为excel