在我的数据库中,有一个表,名称为 tableA。这里给出了表的结构
id from message
1 23 hi how are you
2 65 hey whats going on
3 74 enjoying the vacation with family
4 23 here in Australia its chilly season
5 74 hey sam whats the plan for tomorrow
看到 id 是 auto-increment.from 列表示哪个用户正在发送消息,并且 message 列由 messages 组成。我想知道哪些用户发送了多少单词。所以我必须先计算行中的单词然后我必须搜索整个列并找到重复的位置并为该特定用户添加单词。在我的示例中你可以看到 23 和 74 的两个地方来了。我希望我的输出为
from nos
23 10
65 4
74 12
在这里你可以看到 23 分两行出现,所以我添加了两行的单词数,比如 74 也分两行出现。请指导