我的数据如下所示:
movie_id comment
1 tom cruise is great
1 great action movie
2 got teary eyed
2 great cast
1 tom cruise is hott
我想要一个函数,根据我选择的 movie_id 返回评论中最常见的单词。所以如果我查询movie_id=1,我会得到:
tom, 2
cruise, 2
is, 2
great, 2
hott, 1
action, 1
movie, 1
如果我查询movie_id=2,我会得到:
got, 1
teary, 1
eyed, 1
great, 1
cast, 1
我看到了一些使用 tsql 的解决方案,但我以前从未使用过,也不懂代码。在 sqlite3 中寻找一种方法来做到这一点。