$ php app/console doctrine:query:dql 'SELECT now()'
[Doctrine\ORM\Query\QueryException] [Syntax Error] line 0, col 7: Error: Expected known function, got 'now'
How can I manage to use the MySQL now() function with Doctrine DQL?
The equivalent of MySQL's NOW()
is Doctrine DQL's CURRENT_TIMESTAMP()
.
CURRENT_DATE()
only returns the date part.
来源:https://stackoverflow.com/questions/8347872/how-can-i-use-now-in-doctrine-2-dql