Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2008 Forums
 Transact-SQL (2008)
 Pivot for dynamic table

Author  Topic 

jafrywilson
Constraint Violating Yak Guru

379 Posts

Posted - 2013-02-05 : 08:36:59
Hi all,

This query gives me the result, but i need to convert the rows into column based on PayMode

SELECT Utility.UtilityValue as PayMode,sum(isnull(CLPH.AmountPaid,0)) AS AmountPaid
FROM ClassPayment_History as CLPH
Left join Utility on Utility.UID = CLPH.Paymode
GROUP BY UtilityValue


This is a dynamic column, so i couldn't able to specify column names in pivot query.

visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2013-02-05 : 10:09:32
see

http://beyondrelational.com/modules/2/blogs/70/posts/10840/dynamic-pivot-in-sql-server-2005.aspx

------------------------------------------------------------------------------------------------------
SQL Server MVP
http://visakhm.blogspot.com/

Go to Top of Page
   

- Advertisement -