codecamp

OceanBase SUBSTR

SUBSTR​ 函数截取子字符串。其中多字节符(汉字、全角符等)按 1 个字符计算。

语法

SUBSTR(c1,n1[,n2])

参数

参数

说明

c1

需要截取的字符串。字符串类型可为:CHARVARCHAR2NCHARNVARCHAR2 或 CLOB

n1

截取字符串的开始位置,当 n1 等于 0 或 1 时,都是从第一位开始截取。

n2

要截取的字符串的长度,若不指定 n2,则从第 n1 个字符直到结束的字串。

返回类型

返回与 ​c1​ 类型相同的数据。如果 ​n2​ 为 0,则将其视为 1。如果 ​n2​ 为正,则 OceanBase 从开始算起,从 ​c1​ 开始查找第一个字符。如果 ​n2​ 为负,则 OceanBase 从 ​c1​ 的末尾开始倒数 ​c1​。如果 ​n3​ 省略,则 OceanBase 将 ​c1​ 的所有字符返回。如果 ​n3​ 小于 1,则 OceanBase 返回 ​NULL​。

示例

执行以下语句:

SELECT SUBSTR('13088888888',3,8) test FROM DUAL;

查询结果如下:

+----------+
| TEST     |
+----------+
| 08888888 |
+----------+


OceanBase RTRIM
OceanBase TRANSLATE
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

OceanBase 控制台指南

OceanBase ODC 使用指南

OceanBase Web 版 ODC

OceanBase 客户端版 ODC

OceanBase Connector/J 开发者指南

OceanBase 什么是OceanBase Connector/J

OceanBase SQL 参考(MySQL 模式)

OceanBase SQL 参考(Oracle 模式)

OceanBase 基本元素

OceanBase 数据库对象

OceanBase 函数

OceanBase 单行函数

OceanBase 返回数字的字符串函数

OceanBase 通用比较函数

OceanBase 编码解码函数

OceanBase SQL 调优指南

OceanBase 相关协议

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }