Mysql
 sql >> Database >  >> RDS >> Mysql

Zend_Db ordina per campo Valore

Credo che questo sia quello che stai cercando:

$name = 'John';
$order = new Zend_Db_Expr($this->getAdapter()->quoteInto("name = ?", $name) ." DESC, `name`");
$select = $this->select();
$select->order($order);
return $this->fetchAll($select);