我有一个教义查询;
$q = Doctrine_Query::create()->select('s.monthly_volume')
->from('SearchVolume s')
->innerJoin('s.Keywords k')
->where('k.group_id = ?',array($group_id));
我只希望它在结果数组中返回monthly_volume 值。它目前返回monthly_volume 和id,我不希望它在结果中返回id。