Possible Duplicate:
Need to get records from MySQL database by date only from a datetime field
One of my table has a column added, which has dates like, '2011-09-22 00:38:23', but i want to fetch the data as per date (and not time specific), then how can i do that?
I tried this :
SELECT * FROM `tbl_customer` WHERE added='2011-09-22'
but it didn't work.
tbl_customerWHERE added='%2011-09-22%'. but didn't help – Mohan Sinfh Jun 12 '12 at 5:03