I have data that looks like this:
movie_id comment
1 tom cruise is great
1 great action movie
2 got teary eyed
2 great cast
1 tom cruise is hott
I'd like a function that returns the most common words in the comments, based on what movie_id I select. So if I'm querying movie_id=1, I'd get:
tom, 2
cruise, 2
is, 2
great, 2
hott, 1
action, 1
movie, 1
While if I query movie_id=2, I'd get:
got, 1
teary, 1
eyed, 1
great, 1
cast, 1
I saw some solutions using tsql, but I've never used that before and didn't understand the code. Looking for a way to do this in sqlite3.