1 2 3 4 5 6 7 8 9
| SELECT table_name, create_time, DATE_ADD(create_time, INTERVAL 60 DAY) FROM information_schema.tables
WHERE table_schema = 'B1';
+---------------------+---------------------+----------------------------------------+
| table_name | CREATE_TIME | DATE_ADD(CREATE_TIME, INTERVAL 60 DAY) |
+---------------------+---------------------+----------------------------------------+
|information | 2010-03-19 16:27:27 | 2010-05-18 16:27:27 |
| t1 | 2010-03-25 09:31:29 | 2010-05-24 09:31:29 |
| t_meaning | 2010-03-23 16:15:24 | 2010-05-22 16:15:24 |
+---------------------+---------------------+----------------------------------------+ |