How can I use now() in Doctrine 2 DQL?

2020-02-20 08:00发布

问题:

$ 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?

回答1:

The equivalent of MySQL's NOW() is Doctrine DQL's CURRENT_TIMESTAMP().

CURRENT_DATE() only returns the date part.