I can see people giving lots of comments on this question. But I think, simple use of LIKE
could be easier to get the data from the table.
SELECT * FROM table WHERE COLUMN LIKE '2013-05-11%'
Use LIKE
and post data wild character search. Hopefully this will solve your problem.