I\'m working with MySQL and I would like to get the date/time of the very last change to any table within a database. Each of my tables has an auto updating \'*_modified\' time
Simply, to get all tables under one database use this query
SELECT TABLE_NAME,CREATE_TIME,UPDATE_TIME FROM information_schema.tables WHERE table_schema = 'database_name'
That's all