mysql> SELECT technical, count(technical) as count  FROM affair where(not feedback='') GROUP BY  technical HAVING COUNT(technical)>0;
+-----------+-------+
| technical | count |
+-----------+-------+
| 胡军      |     2 |
| 黄老师    |     4 |
| 兰        |     2 |
+-----------+-------+
这是我在数据库中测试时得到的值 其中technical 和feedback 是我数据库表中的两个字段 本来technical中还应该显示 “可可”这个名称的count为0的  可是查询后返回值居然没有 直接为空了 求指点!