参考:
- https://zhidao.baidu.com/question/1800742743150256827.html
- http://www.mysqltutorial.org/mysql-row-count/
目录
怎么查看mysql数据库的引擎
看你的mysql现在已提供什么存储引擎:
mysql> show engines;
看你的mysql当前默认的存储引擎:
mysql> show variables like '%storage_engine%';
你要看某个表用了什么引擎(在显示结果里参数engine后面的就表示该表当前用的存储引擎):
mysql> show create table 表名;
统计 一张表里有多少条数据(两种方式)
select table_rows from information_schema.tables where table_schema='database_name' and table_name='table_name';
两个结果居然不一样???
此方法有时不准确,因为表中的行计数information_schema
和表中的实际行计数不同步。要避免它,您必须ANALYZE TABLE
在从information_schema
数据库查询行计数之前运行该语句。
ANALYZE TABLE table_name, table_name2,...;