Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Retrieving timestamp of MySQL row creation from meta data?

I have been maintaining a MySQL table of rows of data inserted from PHP code for about a year and a half. Really stupid, I know, I didn't include the timestamp for insertion of these rows.

Is there any possible way that I can retrieve the timestamp of creation of these rows through some metadata or some other way? (Of MySQL or PHPMyAdmin or some other possible ways?)

like image 974
Quik Tester Avatar asked May 31 '13 08:05

Quik Tester


1 Answers

Unfortunately, there's nothing you can do in this case. If MySQL had a secret timestamp field, the general size of tables would increase by 4 bytes per row.

like image 163
Wayne Whitty Avatar answered Sep 21 '22 16:09

Wayne Whitty