一緒にある可能性があります:
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()
希望の日付を取得します。