我需要计算一个表中的行,并通过使用PHP和SQL将值存储在另一行中(PBO非常感谢)。
我有:表新闻
TABLE NEWS (contains stories and the companies where the stories are about)
-----------------
|ID|newstitle|newscontent|company|date|
|1| TITLE EXAMPLE | This is a story | DELL,HP,APPLE | 27-03-2016|
|2| TITLE EXAMPLE | This is another story | APPLE,MICROSOFT,GOOGLE | 29-03-2016|
I DESIRE :(部分)表公司
TABLE COMPANY (contains company name and how much a news item is mentioned about a company)
-----------------
|ID|company|articles|
|1| APPLE | 2 |
|2| Dell | 1|
我需要的是一个PHP脚本,它可以计算TABLE NEWS中提到的每个公司的数量,并将值存储在TABLE COMPANY的公司行中。
例如:在 Table News 中有两篇关于Apple的文章,这些文章在 table company 的专栏文章中得出值2。我希望有人能给我一个提示!