我在MySQL中遇到了一个问题。我想获得两个日期时间条目之间的记录计数。
例如:
我的表中有一个名为"created"的列,数据类型为datetime
。
我想计算在"TODAY'S 4:30 AM"one_answers"CURRENT DATE TIME"之间创建的日期时间记录。
我尝试了MySQL的一些功能,但仍然没有成功。
你能帮我一下吗?谢谢。可与:
SELECT count(*) FROM `table`
where
created_at>='2011-03-17 06:42:10' and created_at<='2011-03-17 07:42:50';
或使用between
:
SELECT count(*) FROM `table`
where
created_at between '2011-03-17 06:42:10' and '2011-03-17 07:42:50';
您可以根据需要更改日期时间。可以使用curdate()
或now()
来获得所需的日期。
select * from yourtable where created < now() and created > '2011-04-25 04:00:00'
select * from yourtable
where created < now()
and created > concat(curdate(),' 4:30:00 AM')
为了提高速度,你可以这样做
WHERE date(created_at) ='2019-10-21'