I have a table like this..
S.No Name created_date
1 N1 2011-01-08
2 N2 2011-01-08
3 N3 2011-01-08
I have tried to filter the records by using mysql date between
The query is
Select * FROM tbl_name
WHERE `created_date` >= '2011-01-08' AND `C`.`created_date` <= 2011-01-08
I am not getting any results… why ?
Check date formats. Make them same :