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
SELECT update_time FROM information_schema.tables WHERE table_schema = 'dbName' AND table_name = 'tableName'