从下表中获取计数值
有一个表1的值,我给出了输出
我需要这个输出的php mysql代码。
表1
抱歉,我不知道如何创建表。只是我创建了。
表包含3行
空间表示为35;#####。

id #### product #### reactions
------------------------
1.    axe     ####      bad
2.    colgate ####  good
3.    axe    ####   normal
4.    axe    ####   good
5.    axe    ####   bad
6.    colgate ####  good
7.    axe     ####  bad
8.    axe     ####  normal
9.    axe      #### good
10.   colgate  #### bad

输出
id #### product #### good #### bad #### normal ##

1.    axe   ####   2   ####  3   #### 2
2.   colgate  #### 2   ####  1   #### 0

最佳答案

SELECT id, product, SUM(reactions = 'bad') AS bad, SUM(reactions = 'good') AS good,
    SUM(reactions = 'normal') AS normal
FROM yourtable
GROUP BY product

关于php - 根据表中的产品获取计数值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14907701/

10-08 21:45