Answers for "mysql see total rows of table"

SQL
0

mysql count table rows

select table_name, sum(table_rows) as sum 
from information_schema.tables
where table_schema = '[DB NAME]'
group by table_name 
order by sum desc;
Posted by: Guest on October-23-2020
0

mysql get all tables row count

# get row count of all tables in all database in this server
select table_name, table_schema,table_rows from information_schema.tables;

# get row count of all tables in testdb database
select table_name, table_schema,table_rows from information_schema.tables where table_schema='testdb';
Posted by: Guest on August-18-2021

Code answers related to "mysql see total rows of table"

Code answers related to "SQL"

Browse Popular Code Answers by Language