Fabio thực sự không đúng, nếu giờ, phút và giây sẽ được bao gồm điều này
where date >= '2013-06-01' and date <= '2013-06-06'
trở thành nội bộ
where date >= '2013-06-01 00:00:00' and date <= '2013-06-06 00:00:00'
Vì vậy, bạn thực sự chỉ chọn 1 giây của 2013-06-06, không cả ngày!
Tất nhiên với BETWEEN cũng vậy. Để có được cả ngày của năm 2013-06, bạn phải viết
where date >= '2013-06-01' and date <= '2013-06-06 23:59:59'
hoặc
where date BETWEEN '2013-06-01' AND '2013-06-06 23:59:59'
Hãy tiếp tục, tự mình thử (hoặc xem trực tiếp trong sqlfiddle ):
create table foo (my_date date, my_timestamp timestamp, my_datetime datetime);
insert into foo values ('2013-06-06', '2013-06-06 12:23:34', '2013-06-06 13:35:48');
select * from foo
where
my_date <= '2013-06-06'; /*returns row*/
select * from foo
where
my_timestamp <= '2013-06-06'; /*does NOT return row*/
select * from foo
where
my_datetime <= '2013-06-06'; /*does NOT return row*/
select * from foo
where
my_timestamp <= '2013-06-06 23:59:59'; /*returns row*/
select * from foo
where
my_datetime <= '2013-06-06 23:59:59'; /*returns row*/