MySQLで全テーブルのレコード数を一覧表示する

全データベースの全テーブル

mysql> select table_name, table_rows from information_schema.TABLES;

データベース毎

mysql> select table_name, table_rows from information_schema.TABLES where table_schema = 'DB名';