oracle中substr函数用法

substr() 函数提取字符串子串,语法为:substr(str, start, [length])。用法举例:从 ‘hello world’ 中提取第 3 个字符开始的 4 个字符:select substr(‘hello world’

substr() 函数提取字符串子串,语法为:substr(str, start, [length])。用法举例:从 ‘hello world’ 中提取第 3 个字符开始的 4 个字符:select substr(‘hello world’, 3, 4) from dual; 结果:’llo’。

oracle中substr函数用法

Oracle 中 substr() 函数用法

substr() 函数用于从字符串中提取子串。其语法如下:

<code>substr(str, start, [length])</code>

登录后复制

其中:

  • str:要从中提取子串的字符串。
  • start:提取子串的起始位置,从 1 开始计数。
  • length(可选):要提取的子串的长度。如果省略,则提取从起始位置到字符串末尾的所有内容。

用法举例

<code>SELECT substr('Hello World', 3, 4) FROM dual;</code>

登录后复制

输出:

<code>llo </code>

登录后复制

示例说明:

  • 该查询从字符串 ‘Hello World’ 中提取了从第 3 个字符(’l’)开始的 4 个字符的子串。
  • 结果子串为 “llo”。

其他用法示例:

  • 提取字符串的第一个字符:

    <code>SELECT substr('Oracle', 1, 1) FROM dual;</code>

    登录后复制

  • 提取字符串的最后几个字符:

    <code>SELECT substr('Database', -3) FROM dual;</code>

    登录后复制

  • 提取指定长度的子串:

    <code>SELECT substr('Programming', 1, 8) FROM dual;</code>

    登录后复制

注意事项:

  • start 参数必须大于或等于 1。
  • length 参数必须大于或等于 0。
  • 如果 start + length > 字符串长度,则将只提取从 start 到字符串末尾的字符。
  • 如果 start 或 length 为负数,则将返回 NULL。

以上就是oracle中substr函数用法的详细内容,更多请关注叮当号网其它相关文章!

文章来自互联网,只做分享使用。发布者:pansz,转转请注明出处:https://www.dingdanghao.com/article/424968.html

(0)
上一篇 2024-04-30 08:43
下一篇 2024-04-30 08:43

相关推荐

联系我们

在线咨询: QQ交谈

邮件:442814395@qq.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信公众号