云日志服务 LTS-字符串函数:strpos函数

时间:2024-07-04 10:52:12

strpos函数

查询目标子串初次出现在字符串中的位置,如果目标子串未出现在字符串中,则返回0。

语法:strpos(str, subStr)

表30 参数说明

参数名称

描述

类型

是否必选

str

原始字符串。

String

subStr

填充字符。

String

返回值类型:Integer类型

示例:SELECT STRPOS('hello world', 'llo'), STRPOS('llo', 'hello world')

表31 查询分析结果

类型

场景1

场景2

查询语句

STRPOS('hello world', 'llo')

STRPOS('llo', 'hello world')

返回结果

3

0

support.huaweicloud.com/usermanual-lts/lts_07_0093.html