Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SQL

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;
Source by www.mysqltutorial.org #
 
PREVIOUS NEXT
Tagged: #mysql #count #table #rows
ADD COMMENT
Topic
Name
1+6 =