我有一个演示表,其中列出了日期,玩具类型,玩具年龄组以及销售量。我想获取按月订购的销售清单,但每个月的平均值:

Table
Date | Type | Age | Sales
2014-01-04 | Blocks | 3+ | 1000
2014-01-12 | Blocks | 3+ | 2000
2014-01-23 | Blocks | 3+ | 1500
2014-02-04 | Blocks | 3+ | 1000
2014-02-12 | Blocks | 3+ | 3500
2014-02-23 | Blocks | 3+ | 700
2014-03-04 | Blocks | 3+ | 1100
2014-04-12 | Blocks | 3+ | 2100
2014-04-23 | Blocks | 3+ | 1200


考虑更大的规模,即成千上万的记录,下面的查询看起来正确还是有更好的方法呢?

SELECT YEAR(Date) AS MyYear,MONTH(Date) AS MyMonth,AVG(Sales) AS MyValue
FROM SalesTable
WHERE Type LIKE 'Blocks%' AND Age='3+'
GROUP BY MyYear, MyMonth;

最佳答案

避免不必要地使用LIKE。在您的样本中,不需要LIKE。当数据增长时,这可能会影响您的性能。

Type LIKE 'Blocks%'


另外,您可能需要考虑为“类型”和“年龄”列编制索引。

关于mysql - MySQL-选择中每个月的平均值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22210806/

10-12 16:28