fl0rian
fl0rian

Reputation: 51

SELECT DATE_FORMAT with Zend DB-Table

is it possible to get the Timestamp right formated with the Zend_Db_Select adapter like "SELECT DATE_FORMAT...." ?

Upvotes: 1

Views: 1794

Answers (1)

akond
akond

Reputation: 16060

Use

$database->select ()->from ('table', array (new Zend_Db_Expr ('DATE_FORMAT("...")')));

form.

Upvotes: 3

Related Questions