mysql中分页查询有两种方式, 一种是使用COUNT(*)的方式,具体代码如下
1 2 3
SELECT COUNT(*) FROM foo WHERE b = 1; SELECT a FROM foo WHERE b = 1 LIMIT 100,10;
1
show table status mysql官方文档在
http://dev.mysql.com/doc/refman/5.1/en/show-table-status.html
这里的rows行是表的行数,但是实际上是不准的。
【mysql】 【innodb】 【索引】 【analyze】 【timestamp】 【optimize】 【update】 【varchar】 …