mysql时间比较返回零记录

时间:2014-09-20 14:32:35

标签: mysql date-comparison

我有以下查询:

SELECT * FROM `appointment` WHERE 
`appointment_full_date_from` = '2014-09-20 22:30:00'

和预约的表约会

enter image description here

appointment_full_date_fromappointment_full_date_to的类型为datetime

当我运行上面的查询时,它必须从表中返回可见记录。但它没有这样做并返回0行。

我也尝试过以下查询,但没有运气。

SELECT * FROM `appointment` WHERE 
`appointment_full_date_from` = STR_TO_DATE('2014-09-20 22:30:00','%Y-%m-%d %H:%i:%s')

这里有什么问题?有人能帮助我吗?

0 个答案:

没有答案