How can get size of table in PhpMyAdmin ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

How can get size of table in PhpMyAdmin ?

i going to get size of the table in my database like this code for get table count : SELECT COUNT(*) FROM "TABLE_NAME" and use for set value of text box in page ...

25th Aug 2017, 5:33 PM
Mohammad Zarchi
Mohammad Zarchi - avatar
1 Answer
+ 3
SELECT TABLE_NAME, table_rows, data_lenght, index_lenght, round(((data_lenght + index_lenght) / 1024 / 1024), 2) "Size_MB" FROM information_schema.TABLES WHERE table_schema = "*****"; ***** = Your database name . Just this ...
25th Aug 2017, 9:25 PM
Mohammad Zarchi
Mohammad Zarchi - avatar