<?php $q = Doctrine_Query::create() ->select( 'CONCAT( users.first_name, " ", users.last_name ) AS person' ) ->from( 'users' ) ->orderBy( 'users.last_name DESC' ); ?>
i dostaje błąd
Kod
Fatal error: Uncaught exception 'Doctrine_Query_Exception' with message 'Unknown aggregate alias: " "' in C:.....
I moje pytanie brzmi jak można to rozwiązać.