locate(源文本,目标文本,开始索引)



现在让我们使用以下查询来检查 locate(字符串,源文本,目标文本,开始索引) 函数。

查询

default> select locate('tutorialspoint','point',10) as string_position;

结果

上述查询将生成以下结果。

string_position 
------------------------------- 
10

输出返回指定字符串“point”在给定的输入字符串“tutorialspoint”中的位置。位置为 10。

apache_tajo_string_functions.htm
广告