Geekzone: technology news, blogs, forums
Guest
Welcome Guest.
You haven't logged in yet. If you don't have an account you can register now.


s.joseph

587 posts

Ultimate Geek

Trusted

#87906 10-Aug-2011 11:03
Send private message

hey trying to rename a header on the pivot,
The month is stored as int type, can i convert it to month name (jan, feb, march) across the top of the pivoted table instead of numbers?

how would i go about this? 

Example:
SELECT*

FROM Table1

PIVOT(

MAX(Score)

FOR[Month]IN([1],[2],[3],[4],[5],[6],[7],[8],[9],[10],[11],[12]))

AS p
 
 Thanks!

Create new topic
bazzer
3438 posts

Uber Geek

Trusted

  #505044 11-Aug-2011 15:33
Send private message

Is this homework? If not, I'll help you out.



s.joseph

587 posts

Ultimate Geek

Trusted

  #505057 11-Aug-2011 15:57
Send private message

it is homework :) figured it out now using 'AS'

thanks! 

bazzer
3438 posts

Uber Geek

Trusted

  #505078 11-Aug-2011 16:22
Send private message

Why don't you post your solution then someone else can learn from you too! :)



bazzer
3438 posts

Uber Geek

Trusted

  #505101 11-Aug-2011 17:06
Send private message

P.S. Not sure I really know what you mean by using 'AS'. I'd probably go with something like:

SELECT *
FROM (SELECT DateName(Month, DateAdd(Month, [Month], 0) - 1) as [MonthName], Score FROM Table_1) AS SourceTable
PIVOT (Max(Score) FOR [MonthName] IN ([January], [February], [March], [April], [May], [June], [July], [August], [September], [October], [November], [December])) AS PivotTable

but keen to see other approaches.

s.joseph

587 posts

Ultimate Geek

Trusted

  #505805 12-Aug-2011 22:39
Send private message

turns out i havnt got it sorted haha, your method didn't work above as i have it saved as a varchar not date type. 

The method i was trying was to use was
SELECT Month [1] As Jan, [2] as Feb etc

but it didn't work as there not columns till after being pivoted, so i get a non existent column error. 

nzkc
1572 posts

Uber Geek


  #505821 12-Aug-2011 23:18
Send private message

As its homework I don't want to do it completely for you...plus you haven't said which DBMS this is for but...

cough derived tables cough common table expressions cough


s.joseph

587 posts

Ultimate Geek

Trusted

  #507031 15-Aug-2011 21:48
Send private message

i did it finally !!! yay!!

SELECT*

FROM (

SELECT

UserID,

caseMonth

      When 1 then 'Jan'

      WHEN 2 THEN 'Feb'

      WHEN 3 THEN 'March'

      WHEN 4 THEN 'April'

      WHEN 5 THEN 'May'

      WHEN 6 THEN 'June'

      WHEN 7 THEN 'July'

      WHEN 8 THEN 'Aug'

      WHEN 9 THEN 'Sept'

      WHEN 10 THEN 'Oct'

      WHEN 11 THEN 'Nov'

      WHEN 12 THEN 'Dec'

    END as [Month],

Score

From dbo.Table1

) temp

PIVOT(

MAX(Score)

FOR[Month]IN(

[Jan],[Feb],[March],[April],[May],[June],[July],[Aug],[Sept],[Oct],[Nov],[Dec]

)

)PivotTable
 

Create new topic





News and reviews »

Air New Zealand Starts AI adoption with OpenAI
Posted 24-Jul-2025 16:00


eero Pro 7 Review
Posted 23-Jul-2025 12:07


BeeStation Plus Review
Posted 21-Jul-2025 14:21


eero Unveils New Wi-Fi 7 Products in New Zealand
Posted 21-Jul-2025 00:01


WiZ Introduces HDMI Sync Box and other Light Devices
Posted 20-Jul-2025 17:32


RedShield Enhances DDoS and Bot Attack Protection
Posted 20-Jul-2025 17:26


Seagate Ships 30TB Drives
Posted 17-Jul-2025 11:24


Oclean AirPump A10 Water Flosser Review
Posted 13-Jul-2025 11:05


Samsung Galaxy Z Fold7: Raising the Bar for Smartphones
Posted 10-Jul-2025 02:01


Samsung Galaxy Z Flip7 Brings New Edge-To-Edge FlexWindow
Posted 10-Jul-2025 02:01


Epson Launches New AM-C550Z WorkForce Enterprise printer
Posted 9-Jul-2025 18:22


Samsung Releases Smart Monitor M9
Posted 9-Jul-2025 17:46


Nearly Half of Older Kiwis Still Write their Passwords on Paper
Posted 9-Jul-2025 08:42


D-Link 4G+ Cat6 Wi-Fi 6 DWR-933M Mobile Hotspot Review
Posted 1-Jul-2025 11:34


Oppo A5 Series Launches With New Levels of Durability
Posted 30-Jun-2025 10:15









Geekzone Live »

Try automatic live updates from Geekzone directly in your browser, without refreshing the page, with Geekzone Live now.



Are you subscribed to our RSS feed? You can download the latest headlines and summaries from our stories directly to your computer or smartphone by using a feed reader.