Zend db Mysql按计数排序

时间:2014-06-15 21:13:35

标签: php mysql zend-framework

我正在寻找使用Zend db的正确语法来显示按计数排序的表。例如,我的mysql表如下所示:

Users         Description
1                topic1
1                topic2
2                topic3

我希望输出看起来像:

User 1 (2 descriptions)
User 2 (1 description)

1 个答案:

答案 0 :(得分:1)

您正在寻找的原始查询

SELECT users, COUNT(*) count
  FROM table1
 GROUP BY users
 ORDER BY COUNT(*) DESC

输出:

| USERS | COUNT |
|-------|-------|
|     1 |     2 |
|     2 |     1 |

这是 SQLFiddle 演示

我不是Zend的专家,但您的查询可能看起来像

$select = $db->select()
             ->from('table1', array('users', 'count' => '(COUNT(*))'))
             ->group('users')
             ->order('(COUNT(*)) DESC');
$stmt = $db->query($select);
$result = $stmt->fetchAll();