SELECT … AS … in CakePHP 1.2
This is a simple hint, but hopefully will be useful to some…
You might have noticed some examples where you have:
[cc lang=”php”]
$this->Profile->find(‘all’, array(‘fields’=>array(‘SUM(Profile.votes) AS total_votes’)));
[/cc]