本文介绍了分组月和年度明智的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想根据月份和时间对值进行分组。明智的
这是我的查询
I want to Group the values based upon month & year wise
this is my query
SELECT Proj_code,Material_TYPE,DED_Description,DED_Short_Desc,Planned_date,Planned_Material_Qty, Planned_Cumulative,Prev_Month_Planned,Current_Month_Planned,Release_Date,Material_Quantity,Actual_Cumulative, Prev_month_Actual,CumulativeProgress_Planned,CumulativeProgress_Actual
FROM @FINAL
MY OUTPUT看起来像
MY OUTPUT looks like
ID DATE1 DATE2 Qty
1 2013-02-23 2013-02-12 100
1 2013-02-23 2013-02-01 200
但我想在月份和数量上一年明智...
如何实现这个
But i want Qty in month & year wise...
How to achieve this
推荐答案
GRUP BY MONTH(YOUR_DATE_TIME_COLUMN) AND YEAR(YOUR_DATE_TIME_COLUMN)
这篇关于分组月和年度明智的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!