mysql> SHOW TABLE STATUS LIKE '%stas%';
+------+--------+---------+------------+---------+----------------+-------------+-----------------+--------------+-----------+----------------+---------------------+-------------+------------+-------------------+----------+----------------+-----------------------+
| Name | Engine | Version | Row_format | Rows | Avg_row_length | Data_length | Max_data_length | Index_length | Data_free | Auto_increment | Create_time | Update_time | Check_time | Collation | Checksum | Create_options | Comment |
+------+--------+---------+------------+---------+----------------+-------------+-----------------+--------------+-----------+----------------+---------------------+-------------+------------+-------------------+----------+----------------+-----------------------+
| stas | InnoDB | 10 | Compact | 1202369 | 127 | 153812992 | 0 | 148897792 | 0 | NULL | 2009-11-03 09:08:17 | NULL | NULL | latin1_general_ci | NULL | | InnoDB free: 46080 kB |
+------+--------+---------+------------+---------+----------------+-------------+-----------------+--------------+-----------+----------------+---------------------+-------------+------------+-------------------+----------+----------------+-----------------------+
mysql> SHOW TABLE STATUS LIKE '%kna1%';
+------+--------+---------+------------+---------+----------------+-------------+-----------------+--------------+-----------+----------------+---------------------+-------------+------------+-------------------+----------+-------------------+-----------------------+
| Name | Engine | Version | Row_format | Rows | Avg_row_length | Data_length | Max_data_length | Index_length | Data_free | Auto_increment | Create_time | Update_time | Check_time | Collation | Checksum | Create_options | Comment |
+------+--------+---------+------------+---------+----------------+-------------+-----------------+--------------+-----------+----------------+---------------------+-------------+------------+-------------------+----------+-------------------+-----------------------+
| kna1 | InnoDB | 10 | Compact | 1028079 | 270 | 277872640 | 0 | 0 | 0 | NULL | 2009-11-03 09:01:24 | NULL | NULL | latin1_general_ci | NULL | max_rows=10000000 | InnoDB free: 46080 kB |
+------+--------+---------+------------+---------+----------------+-------------+-----------------+--------------+-----------+----------------+---------------------+-------------+------------+-------------------+----------+-------------------+-----------------------+ |