Guest User

Untitled

a guest
Nov 15th, 2018
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. SELECT
  2. TABLE_SCHEMA, TABLE_NAME, TABLE_TYPE, CREATE_TIME, UPDATE_TIME
  3. FROM INFORMATION_SCHEMA.TABLES
  4. WHERE TABLE_SCHEMA = 'base_de_datos'
  5. AND TABLE_TYPE = 'BASE TABLE'
  6. ORDER BY UPDATE_TIME DESC;
  7.  
  8.  
  9. SELECT
  10. *
  11. FROM mysql.proc
  12. WHERE type = 'PROCEDURE'
  13. AND db = 'base_de_datos'
  14. ORDER BY modified desc;
Add Comment
Please, Sign In to add comment