locate(source text, target text, start_index)
现在让我们使用以下查询检查 locate(string,source text, target text, start_index) 函数。
查询
default> select locate('tutorialspoint','point',10) as string_position;
上述查询将生成以下结果。
string_position ------------------------------- 10
输出返回给定输入字符串"tutorialspoint"中指定字符串"point"的位置。 位置是10。
apache_tajo_string_functions.html