Is there a way to get the count of rows in all tables in a mysql database without running a SELECT count() on each table?

Cheers

link|improve this question
feedback

7 Answers

up vote 34 down vote accepted
SELECT SUM(TABLE_ROWS) 
     FROM INFORMATION_SCHEMA.TABLES 
     WHERE TABLE_SCHEMA = '{your_db}';

Note from the docs though: For InnoDB tables, the row count is only a rough estimate used in SQL optimization.

link|improve this answer
15  
or, if you want for each table: SELECT table_name, TABLE_ROWS FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA = '{your_db}'; – TheSoftwareJedi Nov 13 '08 at 2:03
2  
Is there any other way to get table_row and table_name ? Because i want exact result not rough estimate. Thank you. – krunal shah Apr 1 '11 at 3:35
@krunalshah, This is one of the restrictions of InnoDB. See dev.mysql.com/doc/refman/5.0/en/innodb-restrictions.html, section Restrictions on InnoDB Tables, for more info. You could always use a SELECT COUNT(*) FROM t, which however, is a lot slower – Marking Feb 23 at 11:21
feedback

You can probably put something together with Tables table. I've never done it, but it looks like it has a column for *TABLE_ROWS* and one for TABLE NAME.

To get rows per table, you can use a query like this:

SELECT table_name, table_rows
FROM INFORMATION_SCHEMA.TABLES
WHERE TABLE_SCHEMA = '**YOUR SCHEMA**';
link|improve this answer
Thanks that works too. – Mark Nov 13 '08 at 3:22
Is there any other way to get table_row and table_name ? Because i want exact result not rough estimate. Thank you. – krunal shah Apr 1 '11 at 3:35
feedback

Like @Venkatramanan and others I found INFORMATION_SCHEMA.TABLES unreliable (using InnoDB, MySQL 5.1.44), giving different row counts each time I run it even on quiesced tables. Here's a relatively hacky (but flexible/adaptable) way of generating a big SQL statement you can paste into a new query, without installing Ruby gems and stuff.

select concat(
    'select "', 
    table_name, 
    '" as table_name, count(*) as exact_row_count from ', 
    table_name, 
    ' UNION '
) 
from INFORMATION_SCHEMA.TABLES 
where table_schema = '**my_schema**';

It produces output like this:

select "func" as table_name, count(*) as exact_row_count from func UNION                         
select "general_log" as table_name, count(*) as exact_row_count from general_log UNION           
select "help_category" as table_name, count(*) as exact_row_count from help_category UNION       
select "help_keyword" as table_name, count(*) as exact_row_count from help_keyword UNION         
select "help_relation" as table_name, count(*) as exact_row_count from help_relation UNION       
select "help_topic" as table_name, count(*) as exact_row_count from help_topic UNION             
select "host" as table_name, count(*) as exact_row_count from host UNION                         
select "ndb_binlog_index" as table_name, count(*) as exact_row_count from ndb_binlog_index UNION 

Copy and paste except for the last UNION to get nice output like,

+------------------+-----------------+
| table_name       | exact_row_count |
+------------------+-----------------+
| func             |               0 |
| general_log      |               0 |
| help_category    |              37 |
| help_keyword     |             450 |
| help_relation    |             990 |
| help_topic       |             504 |
| host             |               0 |
| ndb_binlog_index |               0 |
+------------------+-----------------+
8 rows in set (0.01 sec)
link|improve this answer
feedback
DELIMITER $$

CREATE DEFINER=`root`@`127.0.0.1` PROCEDURE `COUNT_ALL_RECORDS_BY_TABLE`()
BEGIN
DECLARE done INT DEFAULT 0;
DECLARE TNAME CHAR(255);

DECLARE table_names CURSOR for 
    SELECT table_name FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA = DATABASE();

DECLARE CONTINUE HANDLER FOR NOT FOUND SET done = 1;

OPEN table_names;   

DROP TABLE IF EXISTS TCOUNTS;
CREATE TEMPORARY TABLE TCOUNTS 
  (
    TABLE_NAME CHAR(255),
    RECORD_COUNT INT
  ) ENGINE = MEMORY; 


WHILE done = 0 DO

  FETCH NEXT FROM table_names INTO TNAME;

   IF done = 0 THEN
    SET @SQL_TXT = CONCAT("INSERT INTO TCOUNTS(SELECT '" , TNAME  , "' AS TABLE_NAME, COUNT(*) AS RECORD_COUNT FROM ", TNAME, ")");

    PREPARE stmt_name FROM @SQL_TXT;
    EXECUTE stmt_name;
    DEALLOCATE PREPARE stmt_name;  
  END IF;

END WHILE;

CLOSE table_names;

SELECT * FROM TCOUNTS;

SELECT SUM(RECORD_COUNT) AS TOTAL_DATABASE_RECORD_CT FROM TCOUNTS;

END
link|improve this answer
feedback

If you use the database information_schema, you can use this mysql code (the where part makes the query not show tables that have a null value for rows):

SELECT TABLE_NAME, TABLE_ROWS
FROM `TABLES`
WHERE `TABLE_ROWS` >=0
link|improve this answer
feedback

If you want the exact numbers, use the following ruby script. You need Ruby and RubyGems.

Install following Gems:

$> gem install dbi
$> gem install dbd-mysql

File: count_table_records.rb

require 'rubygems'
require 'dbi'

db_handler = DBI.connect('DBI:Mysql:database_name:localhost', 'username', 'password')

# Collect all Tables
sql_1 = db_handler.prepare('SHOW tables;')
sql_1.execute
tables = sql_1.map { |row| row[0]}
sql_1.finish

tables.each do |table_name|
  sql_2 = db_handler.prepare("SELECT count(*) FROM #{table_name};")
  sql_2.execute
  sql_2.each do |row|
    puts "Table #{table_name} has #{row[0]} rows."
  end
  sql_2.finish
end

db_handler.disconnect

Go back to the command-line:

$> ruby count_table_records.rb

Output:

Table users has 7328974 rows.
link|improve this answer
feedback

my easy sql to count TABLES and ALL RECORDS:

$dtb=mysql_query("SHOW TABLES") or die (mysql_error()); $jmltbl=0; $jml_record=0; $jml_record=0; while($row=mysql_fetch_array($dtb)) { $sql1=mysql_query("select * from $row[0]");
$jml_record=mysql_num_rows($sql1);
echo"Table: $row[0]: $jml_record records
";
$jmltbl++; $jml_record+=$jml_record; } echo"--------------------------------
$jmltbl Tables, $jml_record records.";

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.