Answers for "get size of table mysql"

SQL
3

mysql get table size

SELECT
  TABLE_NAME AS `Table`,
  ROUND((DATA_LENGTH + INDEX_LENGTH) / 1024 / 1024) AS `Size (MB)`
FROM
  information_schema.TABLES
WHERE
  TABLE_SCHEMA = "bookstore"
ORDER BY
  (DATA_LENGTH + INDEX_LENGTH)
DESC;
Posted by: Guest on December-19-2020
0

return size of tables in mysql

SELECT 
     table_schema as `Database`, 
     table_name AS `Table`, 
     round(((data_length + index_length) / 1024 / 1024), 2) `Size in MB` 
FROM information_schema.TABLES 
ORDER BY (data_length + index_length) DESC;
Posted by: Guest on October-01-2021
-1

check size table

SELECT pg_size_pretty( pg_total_relation_size('tablename') );
(postgres)
Posted by: Guest on June-15-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language