mysql - Retrieve records based on Date -
i have date column in table. there way in mysql retrieve record based on date excluding time part?
i have tried appending * not seems work.
select * mytable filterdate="2010-08-01 *"
is there way rather filtering using between?
thanks.
select * mytable filterdate "%2010-08-01 %"
Comments
Post a Comment