maria DB: show tables;

From wikieduonline
Revision as of 08:54, 9 September 2021 by Welcome (talk | contribs) (→‎MongoDB)
Jump to navigation Jump to search

MariaDB

Size of MariaDB tables:

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;

Ref: https://stackoverflow.com/questions/9620198/how-to-get-the-sizes-of-the-tables-of-a-mysql-database

MongoDB

PostgreSQL

  • \dt
  • SELECT * FROM pg_catalog.pg_tables;

Related terms

See also

Advertising: