I have sqlite database and need to find the most frequent words in it.
Example,
text
table chair floor
table chair
table
Solution needed
word number
table 3
chair 2
floor 1
The database is big (several Gb). I am looking for solution in SQL. Also maybe using C++ or other approach.
http://www.sqlite.org/fts3.html
Check out the Fts4aux – Direct Access to the Full-Text Index section.