I have a database field which contains string values.
I am looking a way to find top 10 maximum occured words from the field
Thanks in advance
|
|
|||
|
|
|
First get all the words from that field:
Then group them by their counts:
Get top 10 results:
|
|||||||
|
|
Here you have an easy example with numbers:
Regards |
|||
|
|