OrientDB 计数字段中的短语

OrientDB count phrase in field

如何使用 OrientDB 计算字段中的短语实例?

假设我有以下数据:

Display_title | Description
My_data_12 | The quick brown fox jumps over the lazy dog
My_data_13 | The one

如何统计'the'个实例的个数,输出类似这样:

Display_title | Count
My_data_12 | 2
My_data_13 | 1

使用来自here

的@Vitim.us回答

您可以使用

从工作室调用它
select title, occurrences(@this.description, "the") from v

请注意,这是区分大小写的,因此对于您的示例,您将得到:

 title      | occurrences
 My_data_12 | 1
 My_data_13 | 0