substr 函数用于从字符串中提取子字符串,语法为 substr(string, start, length)。需要指定源字符串、起始位置和长度(可选),函数从指定位置开始提取指定长度的子字符串。例如,substr(‘hello world’, 1, 5) 返回 “hello”,substr(‘hello world’, 7) 返回 “world”。
Oracle 中 SUBSTR 函数的用法
什么是 SUBSTR 函数?
SUBSTR 函数用于从字符串中提取子字符串。
语法:
<code>SUBSTR(string, start, length)</code>
登录后复制
其中:
- string 是源字符串。
- start 是提取子字符串的起始位置(从 1 开始)。
- length 是子字符串的长度。
用法:
使用 SUBSTR 函数时,需要指定以下参数:
- string:要从中提取子字符串的源字符串。
- start:从其开始提取子字符串的字符位置。对于第一个字符,start 为 1。
- length(可选):要提取的子字符串的长度。如果不指定,将提取从 start 位置到字符串末尾的所有字符。
示例:
以下是 SUBSTR 函数在 Oracle 中的一些示例用法:
<code>-- 从 "Hello World" 中提取 "Hello" SELECT SUBSTR('Hello World', 1, 5) FROM dual; -- 从 "Hello World" 中提取 "World" SELECT SUBSTR('Hello World', 7) FROM dual; -- 从 "Hello World" 中提取从第 7 个字符开始的所有文本 SELECT SUBSTR('Hello World', 7, LENGTH('Hello World') - 6) FROM dual;</code>
登录后复制
注意:
- SUBSTR 函数从 1 开始对字符进行计数。
- 如果 start 或 length 为负数,则返回空字符串。
- 如果 start 比字符串长度大,则返回空字符串。
- 如果 length 比剩余字符串的长度长,则返回剩余字符串。
以上就是oracle中substr的用法的详细内容,更多请关注叮当号网其它相关文章!
文章来自互联网,只做分享使用。发布者:代号邱小姐,转转请注明出处:https://www.dingdanghao.com/article/424822.html