MySQL中select count(1) from table查询总数的速度非常慢的解决办法
问题:(查询速度非常慢)
select count(1) from table
发现查询少量数据没什么大问题,一旦数据量非常大,这个查询总数速度就非常慢,严重影响了网页数据的加载速度。
解决办法:(后面加一个where id>0的条件即可)
select count(1) from table where id > 0
正在加载评论...
相关文章
栏目列表
推荐阅读
- mysql给id添加自增
- mysql的分页查询sql语句
- Mysql数据库利用Navicat工具导入sql数据表文件图解
- Mysql命令导入数据库文件
- mysqldump: Got error: 1449: The user specified as a definer ('root'@'%') does not exist when using LOCK TABLES
- MySQL将指定数据有逗号分隔的,拆分成多条(即行转列)
- mysql查询今天,昨天,本周,上周,本月,上月,本季度,上季度,本年,去年的数据
- mysql8.0在用group by分组报错ERROR 1055 (42000): Expression #1 of SELECT list is not in GROUP BY
- sql用COALESCE函数将查询为空的数据设置为0
- mysql中,命令导出(备份)数据库成sql文件
- mysql中用floor计算除法取整,整数除法
- mysql对表进行新增,删除,修改字段的sql语句
- mysql中的除法运算通过floor取整
- mysql用navicat导出数据库报1577错误记录
- java.sql.SQLException: No suitable driver found for jdbc:mysql://localhost:3306/database
- 绿色免安装版mysql下载地址及环境变量设置图解
- You must reset your password using ALTER USER statement before executing this statement.
- Unable to connect to remote host. Catalog download has failed.
- ON DUPLICATE KEY UPDATE的用法
- 在sql做order by排序时,又让特定的数据排在最前面