sql语句大小写,这样的SQL语句如何写?

这样的SQL语句如何写? - 故障解答 - 电脑教程网

这样的SQL语句如何写?

日期:2006-07-07   荐:
这样的SQL语句如何写?表有以下数据A B甲 1甲 2甲 3乙 1如何用 SQL 查出这样的结果A B C D甲 1 2 3乙 1 0 0http://blog.csdn.net/xluzhong/articles/349046.aspx----這裡的表為tablea(name,a,b) ---以a開始到b進行行列轉換declare @a varchar(1000)set @a='select name 'select @a=@a ',sum(case when a=''' a ''' then b end)' ' as ' a ----這裡sum改為min或max結果一樣from (select distinct a from TableA)T1set @a=@a ' from TableA group by name'--exec(@a)print (@a)select name ,sum(case when a='andy ' then b end) as andy ,sum(case when a='fenlam' then b end) as fenlam from TableA group by name還要加以句update table tb set 字段1=isnull(字段1,0),字段2=isnull(字段2,0)...
标签: