January 22, 2014 at 3:52 am
I have this query that gives me
Select WeekRange as WeekRange,
[Open] as 'Open', [Resolved] as 'Resolved', [Pending] as 'Pending', [Other] as 'Other'
From
(
Select weekRange, Status from ##TempInteractionData
) As SourceTable
Pivot
(
Count(Status) for Status in ([Open], [Resolved], [Pending], [Other])
) As PivotTable
The output looks like this
What it is doing is sorting the data within a month and then the month itself
WeekRangeOpenResolvedPendingOther
01/05 ~ 01/11173611
01/12 ~ 01/182111911
01/19 ~ 01/2583200
12/15 ~ 12/212230
12/22 ~ 12/280210
12/29 ~ 01/043410
But what i need is the last 6 week ranges in descending order. Note that the order is month/date and the data for the month 12 is from 2013. So i need 2014 data (first 3 rows) in descending and 2013 data (last 3 rows in descending) order after that.
January 22, 2014 at 5:40 pm
Please don't cross-post. It only confuses people and fragments your answers.
No replies to this thread please. Post your replies here:
http://www.sqlservercentral.com/Forums/Topic1533586-392-1.aspx
My thought question: Have you ever been told that your query runs too fast?
My advice:
INDEXing a poor-performing query is like putting sugar on cat food. Yeah, it probably tastes better but are you sure you want to eat it?
The path of least resistance can be a slippery slope. Take care that fixing your fixes of fixes doesn't snowball and end up costing you more than fixing the root cause would have in the first place.
Need to UNPIVOT? Why not CROSS APPLY VALUES instead?[/url]
Since random numbers are too important to be left to chance, let's generate some![/url]
Learn to understand recursive CTEs by example.[/url]
[url url=http://www.sqlservercentral.com/articles/St
Viewing 2 posts - 1 through 1 (of 1 total)
You must be logged in to reply to this topic. Login to reply