我有下表,它存储了响应文本和与之关联的关键字搜索。
创建表 nlp.search(response string, words string,inquiry_time timestamp);
insert into nlp.search values('如何重置密码','重置word密码',TIMESTAMP("2021-09-19 05:30:00+00")); 插入 nlp.search values('如何重置密码','重置密码',TIMESTAMP ("2021-09-20 07:30:00+00")); 插入 nlp.search values('如何重置密码','密码',TIMESTAMP ("2021-09-16 08:30:00+00")); 插入 nlp.search values('如何重置密码','reset',TIMESTAMP ("2021-09-14 08:30:00+00"));
我想以这种格式的响应提供一个摘要报告以及与之关联的每个单词的计数。
response individual_word_count
如何重设密码 reset(3) word(1) password(2) passphrase(1)
还可以传递时间戳列inquiry_time 以缩小日期范围,并且必须相应地计算汇总值
例如,时间范围过滤器 2021-09-19 到 2021-09-20
response individual_word_count
如何重设密码 reset(2) word(1) password(1) passphrase(1)
这可以使用视图来完成吗?