摘要:
select a.sname,max(a.语文) yuwen,max(a.数学) shuxue from (select sname, case kemu when '语文' then fenshu else 0 end 语文, case kemu when '数学' then fenshu els 阅读全文
摘要:
pivot 运算符使用首先我们创建测试表,并且插入相应的数据 create table pivotDemo( id int not null, subjects char(20) not null, score int not null ) insert into pivotDemo values( 阅读全文
摘要:
pivot 可以把列值转换为输出中的多个列。 pivot 可以在其他剩余的列的值上执行聚合函数。 unpivot 将列转换为列值 语法 SELECT <non-pivoted column>, [first pivoted column] AS <column name>, [second pivo 阅读全文
摘要:
select c.score,sum(c.ccount)from (select b.n ,b.score,count(1) ccount from (select unpriots.n,unpriots.score from (select cdate,n1,n2,n3,n4,n5,n6,n7,n 阅读全文