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

发布网友 发布时间:2022-04-23 15:42

我来回答

2个回答

热心网友 时间:2022-04-07 16:15

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 al        返回 'is'

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

热心网友 时间:2022-04-07 17:33

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

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

参考资料:http://www.pandr.tk/

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com