Last active
October 22, 2015 13:34
-
-
Save apperceive/80d96091452aeb98f9a6 to your computer and use it in GitHub Desktop.
Show mySQL database table last access dates
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT update_time, table_name FROM information_schema.tables WHERE table_schema = 'MYDB' ORDER BY 1,2; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment