未找到Zend列:1054'字段列表'中的未知列'0'

时间:2010-08-24 13:56:07

标签: php mysql zend-framework zend-db mysql-error-1054

我有下一个代码:

    $parent_priority = $data['priority'];
    $where = $this->getAdapter()->quoteInto('priority >= ?', $parent_priority);
    $columns = array ('id',
                      'title',
                      'enabled',
                      'description',
                      'pv',
                      'gv',
                      'mps', 'priority',
                      );
    $select_data = $this->select()->from($this->_name, $columns);
    $ranks = $this->fetchAll($select_data)->toArray();

但Zend在行$ranks = $this->fetchAll($select_data)->toArray();

中创建了一个错误“找不到列:'字段列表'中的1054未知列'0'

我如何解决这个问题?

1 个答案:

答案 0 :(得分:-3)

在'优先级'之后,从数组中取消最后一个“,”。