declare @temp table (
id int identity(1,1),
deptname nvarchar(500),
type nvarchar(1),
value int
)
insert into @temp
select 'payroll','a',20
union all
select 'payroll','b',20
union all
select 'payroll','b',10
union all
select 'sales','a',20
union all
select 'sales','b',20
union all
select 'sales','b',10
select * from @temp
select deptname,a,b,c from
(select SUM(value) as value,deptname,type from @temp group by type,deptname) p
pivot (SUM(value) FOR type IN (a,b,c)) AS pvt
Thursday, October 4, 2012
simple example of pivot in sql
Subscribe to:
Post Comments (Atom)
can you please explain me Backpropagation & Gradients in layman language as simple as possible
Absolutely! Let’s break down backpropagation and gradients in the simplest possible way , like we’re teaching a curious 10-year-old. 🎯...
-
The error message you encountered ("DeleteService FAILED 1072: The specified service has been marked for deletion") indicates tha...
-
may be you need to show serial number in your rdlc report then you can use following syntax for showing 1,2,3... continuous on in table fie...
-
The error message you're seeing indicates that the "global using directive" feature is currently unsupported in the version o...
No comments:
Post a Comment