多个日期查询

时间:2010-09-23 19:21:09

标签: sql

我需要帮助创建查询以获取所选年份和所选年份的前一年的信息。这两年需要按季度(QTR)。 QTR1将始终是03月,QTR2月06,QTR3月09,& QTR4个月12.无需计算或平均。

字段/列的YEARMONTH存储为mm / dd / yyyy,dd始终为01,ACTUAL_MONTH(浮点)表示所有QTR基于当前选择的YEARMONTH和一年前的TARGET_MONTH(浮点),所有QTR基于所选的YEARMONTH,和PROJECTION_MONTH(浮动)选择所有基于YEARMONTH的QTR。

YEARMONTH (PK, Datetime)
ACTUAL_MONTH(Float)
TARGET_MONTH(Float)
PROJECTION_MONTH(Float)

如果选择了2010年的任何YearMonth,应该是这样的

                   Q1 Q2 Q3 Q4
09-Actual      xxx xxx xxx xxx
10-Actual      xxx xxx xxx xxx
10-Target      xxx xxx xxx xxx
10-Projection xxx xxx xxx xxx

1 个答案:

答案 0 :(得分:0)

对于此问题,您可以使用多种方法来获得结果。 其中一些是基于QTR类型统一结果。 所以,也许它是获得结果的简单方法。

首先,根据给定的YearMonth尝试获得actual_month QTR。 查询将如下所示:

SELECT
QTRType = cast(year(YearMonth as varchar(10)) + '-Actual',
Q1 = case when month(YearMonth) = 3 then Actual_Month else 0 end,
Q2 = case when month(YearMonth) = 6 then Actual_Month else 0 end,
Q3 = case when month(YearMonth) = 9 then Actual_Month else 0 end,
Q4 = case when month(YearMonth) = 12 then Actual_Month else 0 end

FROM Table1
WHERE
year(YearMonth) <= 2010

上面的查询将返回所有实际类型QTR。 因此,下一步,采用相同的方法,尝试获得Target类型QTR和Projection QTR。 获得它之后,只需使用union all关键字将所有查询联合起来。

最终查询:

SELECT
QTRType = cast(year(YearMonth as varchar(10)) + '-Actual',
Q1 = case when month(YearMonth) = 3 then Actual_Month else 0 end,
Q2 = case when month(YearMonth) = 6 then Actual_Month else 0 end,
Q3 = case when month(YearMonth) = 9 then Actual_Month else 0 end,
Q4 = case when month(YearMonth) = 12 then Actual_Month else 0 end

FROM Table1
WHERE
year(YearMonth) <= 2010

UNION ALL

SELECT
QTRType = cast(year(YearMonth as varchar(10)) + '-Target',
Q1 = case when month(YearMonth) = 3 then Target_Month else 0 end,
Q2 = case when month(YearMonth) = 6 then Target_Month else 0 end,
Q3 = case when month(YearMonth) = 9 then Target_Month else 0 end,
Q4 = case when month(YearMonth) = 12 then Target_Month else 0 end

FROM Table1
WHERE
year(YearMonth) <= 2010

UNION ALL

SELECT
QTRType = cast(year(YearMonth as varchar(10)) + '-Projection',
Q1 = case when month(YearMonth) = 3 then Projection_Month else 0 end,
Q2 = case when month(YearMonth) = 6 then Projection_Month else 0 end,
Q3 = case when month(YearMonth) = 9 then Projection_Month else 0 end,
Q4 = case when month(YearMonth) = 12 then Projection_Month else 0 end

FROM Table1
WHERE
year(YearMonth) <= 2010

希望,它可以启发你:)

此致 弗里茨

注意:我没有测试查询,但我很确定它会起作用:)