codecamp

OceanBase INSTR

INSTR 函数在一个字符串中搜索指定的字符,返回发现指定的字符的位置。

注意 
多字节符(汉字、全角符等),按 1 个字符计算。

语法

INSTR(c1,c2[,i[,j]])

参数

参数

说明

c1

被搜索的字符串。字符串类型可为:CHARVARCHAR2NCHARNVARCHAR2 或 CLOB

c2

希望搜索的字符串。字符串类型可为:CHARVARCHAR2NCHARNVARCHAR2 或 CLOB

i

搜索的开始位置,默认值为 1。当值小于 0 时,搜索从反方向开始,但是仍返回被搜索到的字符的正序位置。

j

第 j 次出现的位置,默认值为 1。

返回类型

NUMBER 数据类型。

示例

此示例展示了字符  在字符串 重庆某软件公司 中第一次出现的位置。

SELECT INSTR ('重庆某软件公司','某',1,1) instring FROM DUAL;

返回结果:

+----------+
| instring |
+----------+
|        3 |
+----------+

此示例中, instring1 应返回正向搜索 ce 时在字符串中第二次出现的位置,instring2 应返回反向搜索 ce 时在字符串中第二次出现的位置:

SELECT INSTR('oceanbase pratice','ce',1,2) instring1,INSTR('oceanbase pratice','ce',-1,2) instring2  FROM DUAL;

返回结果,正向搜索时 ce 第二次出现在第 16 位,反向搜索时 ce 第二次出现在第二位:

+----------+------------+
| instring1 | instring2 |
+----------+------------+
|       16 |          2 |
+----------+------------+


OceanBase ASCII
OceanBase LENGTH
温馨提示
下载编程狮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; }