我在我的数据库中创建了6个月的数据,其列名为productiondate。我已为此生产日期列提供了6个月的日期。现在我需要从这个单一的productiondate列中检索月度数据的数据。
我需要以下列方式显示
jan,feb,mar,........ dec在单独的列中
答案 0 :(得分:2)
您没有提供有关当前表结构或现有查询的任何详细信息,但听起来您正在尝试将数据从行转移到列中。
MySQL没有透视功能,因此您需要使用带有CASE
表达式的聚合函数来复制它。您的代码与此类似:
select otherColumns,
max(case when month(productiondate)=1 then value end) Jan,
max(case when month(productiondate)=2 then value end) Feb,
max(case when month(productiondate)=3 then value end) Mar,
max(case when month(productiondate)=4 then value end) Apr,
max(case when month(productiondate)=5 then value end) May,
max(case when month(productiondate)=6 then value end) Jun,
....
from yourtable
group by otherColumns
然后,您将otherColumns
替换为您希望包含在最终结果中的任何其他列。然后,这些列将包含在GROUP BY
中。您还可以将value
替换为您希望在每个月下显示的列的名称。
答案 1 :(得分:2)
您需要使用GROUP BY
月并生成按月计算的报告,您可能还需要根据您的要求使用SUM
,COUNT
,AVG
等聚合函数。
您可以使用MonthName
功能从日期获取月份名称
例如
mysql> SELECT MONTHNAME('1998-02-05');
-> 'February'
所以您的查询可能如下所示:
SELECT MONTHNAME(productiondate) as mon, SUM(XYZ), COUNT(*)
FROM Your_Table_Name
GROUP BY mon