I don't believe MySQL will hold that info. My suggestion is that you create a DateCreated field in every table and have it had a default value of the current date. Not sure how to do this in MySQL but it certainly is possible, in SQL Server it is something like:
ALTER TABLE XYZ ADD DateCreated DEFAULT getdate();
Then you no longer have the problem of not having a date 😉