Answers for "sql check table size"

SQL
0

SQL query to verify the size of the table

SELECT table_schema, table_name, data_length, index_length FROM information_schema.tables
Posted by: Guest on October-26-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