ORACLE截取字符串
时间: 2023-08-28 14:07:18 浏览: 139
oracle中字符串截取
4星 · 用户满意度95%
Oracle中的SUBSTR函数可以用来截取字符串。它的语法如下:
SUBSTR(string, start_position, [length])
其中,string是要截取的字符串,start_position是起始位置,length是要截取的长度(可选)。如果不指定length,则截取从start_position开始到字符串末尾的所有字符。例如:
SELECT SUBSTR('Hello World', 7) FROM dual;
这个查询会返回字符串“World”,因为它从第7个字符开始截取,直到字符串末尾。如果我们想截取前5个字符,可以这样写:
SELECT SUBSTR('Hello World', 1, 5) FROM dual;
这个查询会返回字符串“Hello”,因为它从第1个字符开始截取,截取长度为5个字符。
阅读全文