1

我有一个查询如下:

select status, count(id) as units from myTable group by status

我在使用表时有一个 Zend_Db_Table 对象,我正在尝试下面提到的片段来创建上面的查询:

$objTable= new Application_Model_DbTable_MyTable();
$select = $objTable -> select(Zend_Db_Table::SELECT_WITH_FROM_PART)
                    -> setIntegrityCheck(false); // i am also using joins to create the query, but this is not of concern
$select -> columns(array(
           'status' => new Zend_Db_Expr('DISTINCT(STATUS)'),
           'units'  => new Zend_Db_Expr('COUNT(id)')
           ));
$select -> group('status');

从上面的代码片段创建的查询如下:

select myTable.*, DISTINCT(STATUS) as status, COUNT(id) as units from myTable group by status

我想myTable.*从生成的查询中删除 。

4

2 回答 2

1
$select = $db ->select()
              ->distinct()
              ->from('myTable',array('status', 'COUNT(id) as units'))
              ->group('status');
于 2012-08-28T10:11:55.173 回答
0

试试这个。

$select = new Zend_Db_Select;

$select->from(
             # table
             array(
                  't' => 'myTable'
             ),

             # columns
             array(
                 'status' => 'DISTINCT(STATUS)',
                 'units'  => 'COUNT(id)',
             ));
       ->group('status');

如果子句中没有指定列,问题Zend_Db_Select将自动添加到您的查询中table.*->from(

于 2012-08-28T09:38:06.200 回答