zend の各行の 2 列の合計を取得する方法。私のコードは-
$fieldArray = array('Jan','Feb', 'total'=>'Jan+Feb');
$db = Zend_Db_Table::getDefaultAdapter();
$select = $db->select()
->from($this->_name,$fieldArray);
die($select);
しかし、それは query-
SELECTを出力しCustomerます。Jan、Customer。Feb、Customer。Jan+FebAS totalFROMCustomer
エラーが発生します。
結果を取得するためのステートメントをどのように記述しますか?