为了账号安全,请及时绑定邮箱和手机立即绑定

请教下:oracle 中 substr函数的用法?

请教下:oracle 中 substr函数的用法?

至尊宝的传说 2019-02-04 10:06:50
请教下:oracle 中 substr函数的用法
查看完整描述

2 回答

?
弑天下

TA贡献1818条经验 获得超8个赞

substr

  Oracle中的截取字符串函数

  语法如下:

  substr( string, start_position, [ length ] )

  参数分析:

  string

  字符串值

  start_position

  截取字符串的初始位置, Number型,start_position为负数时,表示从字符串右边数起。

  length

  截取位数,Number型

  其中,length为可选,如果length为空(即不填)则返回start_position后面的所有字符。

  意思就是:

  从start_position开始,取出length个字符并返回取出的字符串。

  具体参考示例。

  示例:

  SELECT  substr('This is a test', 6, 2)  FROM dual        返回 'is'

  substr('SyranMo have a dream', -8, 2)



查看完整回答
反对 回复 2019-03-14
?
慕无忌1623718

TA贡献1744条经验 获得超4个赞

-- 从左边开始的第1个位置,截取长度为2的字符串
select substr('test001',1,2) from dual;
te

-- 从右边开始的第2个位置,截取长度为2的字符串
select substr('test001',-2,2) from dual;
01

查看完整回答
反对 回复 2019-03-14
  • 2 回答
  • 0 关注
  • 542 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信