次のコードがあります。
$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 は「列が見つかりません: 1054 不明な列 '0' が 'フィールド リスト' にあります」というエラーを行に作成します。$ranks = $this->fetchAll($select_data)->toArray();
どうすればこれを解決できますか?