Reputation: 51
is it possible to get the Timestamp right formated with the Zend_Db_Select adapter like "SELECT DATE_FORMAT...." ?
Upvotes: 1
Views: 1794
Reputation: 16060
Use
$database->select ()->from ('table', array (new Zend_Db_Expr ('DATE_FORMAT("...")')));
form.
Upvotes: 3