How can I use now() in Doctrine 2 DQL?(如何在 Doctrine 2 DQL 中使用 now()?)
问题描述
$ php app/console algorithm:query:dql 'SELECT NOW()'
<块引用>
[DoctrineORMQueryQueryException][语法错误] 第 0 行,第 7 列:错误:预期已知函数,得到现在"
如何在 Doctrine 的 DQL 中使用 MySQL 的 NOW()
函数?
相当于 MySQL 的 NOW()
是 Doctrine DQL 的 CURRENT_TIMESTAMP()
.
CURRENT_DATE()
只返回日期部分.
参考:DQL日期/时间相关函数
$ php app/console doctrine:query:dql 'SELECT NOW()'
[DoctrineORMQueryQueryException] [Syntax Error] line 0, col 7: Error: Expected known function, got 'now'
How can I use MySQL's NOW()
function with Doctrine's DQL?
The equivalent of MySQL's NOW()
is Doctrine DQL's CURRENT_TIMESTAMP()
.
CURRENT_DATE()
only returns the date part.
Reference: DQL date/time related functions
这篇关于如何在 Doctrine 2 DQL 中使用 now()?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 Doctrine 2 DQL 中使用 now()?


基础教程推荐
- 如何在 SQL Server 的嵌套过程中处理事务? 2021-01-01
- ERROR 2006 (HY000): MySQL 服务器已经消失 2021-01-01
- 使用pyodbc“不安全"的Python多处理和数据库访问? 2022-01-01
- 在 VB.NET 中更新 SQL Server DateTime 列 2021-01-01
- SQL Server:只有 GROUP BY 中的最后一个条目 2021-01-01
- SQL Server 2016更改对象所有者 2022-01-01
- Sql Server 字符串到日期的转换 2021-01-01
- 无法在 ubuntu 中启动 mysql 服务器 2021-01-01
- 将数据从 MS SQL 迁移到 PostgreSQL? 2022-01-01
- SQL Server 中单行 MERGE/upsert 的语法 2021-01-01