_naruto
2015-02-08 11:07
max() 进行了索引优化, count()这节中没有提到怎么优化啊? 求指导
课程中没有具体的说明,MySQL中MAX()函数就是返回指定列中的最大值,忽略NULL值。
比如:
mysql> SELECT MAX(prod_price) AS max_price -> FROM products; +-----------+ | max_price | +-----------+ | 55.00 | +-----------+ 1 row in set (0.00 sec)
性能优化之MySQL优化
101639 学习 · 221 问题
相似问题