Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- SELECT TABLE_NAME AS "Table Name",
- table_rows AS "Quant of Rows", ROUND( (
- data_length + index_length
- ) /1024, 2 ) AS "Total Size Kb"
- FROM information_schema.TABLES
- WHERE information_schema.TABLES.table_schema = 'global2'
- ORDER BY
- table_rows DESC
- LIMIT 0 , 30
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement