本文介绍了时间戳记间隔的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一列名为"s_timestamp".
I have a column called "s_timestamp."
如何返回时间戳中具有当天的所有记录?
How can I return all the records that have the current day in the timestamp?
例如,
s_timestamp
2012-12-27 1:00:00
2012-12-27 2:00:00
2012-12-26 0:00:01
2012-12-20 0:00:02
2012-12-21 0:00:03
我想要以下输出:
2012-12-27 1:00:00
2012-12-27 2:00:00
让我知道是否不清楚.
推荐答案
只需使用CURDATE()
.例如
SELECT *
FROM tableName
WHERE DATE(s_timestamp) = CURDATE()