标签:mysql operation mysq tps dev 数据 man null html
perfer count(*)
官方文档:
_InnoDB handles SELECT COUNT(*) and SELECT COUNT(1) operations in the same way. There is no performance difference._
阿里手册:
【强制】不要使用 count( 列名 ) 或 count( 常量 ) 来替代 count( * ) , count( * ) 是 SQL 92 定义的
标准统计行数的语法,跟数据库无关,跟 NULL 和非 NULL 无关。
说明: count( * ) 会统计值为 NULL 的行,而 count( 列名 ) 不会统计此列为 NULL 值的行。
标签:mysql operation mysq tps dev 数据 man null html
原文地址:https://www.cnblogs.com/thinkam/p/10350406.html