码迷,mamicode.com
首页 > 数据库 > 详细

mysql quick query row count using sql

时间:2019-06-16 00:33:44      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:data   product   format   --   tables   test   image   hang   ber   

1. command

show table status like {table-name};

 

2. sample

mysql> use inventory;
Database changed
mysql> show tables;
+---------------------+
| Tables_in_inventory |
+---------------------+
| customers           |
| decimalTest         |
| orders              |
| orders1             |
| products            |
| products_on_hand    |
| t_amount_cumulation |
| t_member_inf        |
| test                |
| test2               |
+---------------------+
10 rows in set (0.00 sec)

mysql> show table status like ‘customers‘;
+-----------+--------+---------+------------+------+----------------+-------------+-----------------+--------------+-----------+----------------+---------------------+-------------+------------+-----------------+----------+----------------+---------+
| 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 |
+-----------+--------+---------+------------+------+----------------+-------------+-----------------+--------------+-----------+----------------+---------------------+-------------+------------+-----------------+----------+----------------+---------+
| customers | InnoDB |      10 | Dynamic    |    4 |           4096 |       16384 |               0 |        16384 |         0 |           1006 | 2019-06-13 02:15:15 | NULL        | NULL       | utf8_unicode_ci |     NULL |                |         |
+-----------+--------+---------+------------+------+----------------+-------------+-----------------+--------------+-----------+----------------+---------------------+-------------+------------+-----------------+----------+----------------+---------+
1 row in set (0.00 sec)

 The output result indicate the row number of the table: customers is 4.

技术图片

 

mysql quick query row count using sql

标签:data   product   format   --   tables   test   image   hang   ber   

原文地址:https://www.cnblogs.com/lenmom/p/11029413.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!