在mysql/ target=_blank class=infotextkey>mysql数据库中统计一张表中条目个数的sql语句是:
select count(*) from tableName;
#or
select count(1) from tableName;
#or 统计一个列项,如ID
select count(ID)
另外,可通过使用information_schema统计个数
mysql中有一个名为 information_schema 的数据库,在该库中有一个 tables 表,这个表主要字段分别是:
对于information_schema库,笔者略有了解,在mysql数据库中存储很多实时、关键信息,有时间好好研究下。
以下sql语句给出了查询方法,同时也统计出了占用存储空间的信息: