1樓:厙曼冬
針對你這個問題,已經有幾位達人了。
我想說的是你的表怎麼會設計成有200個字段這麼多。
這麼寬的表資料儲存時必然造成行遷移,這對應用的效能必然有較大影響。
所以,建議將表拆分,以後很多方面都會很方便。
2樓:匿名使用者
你說得不太清楚啊,你是要對a1 a2 ..a200,每個列都求和,最後得出sum1 sum2...sum200?
如何求和一列資料
3樓:電子科技小豆子
求和一列資料的方法如下:
工具/原料:華碩redolbook14、win 10、excel2020
1、開啟excel**,滑鼠放在資料最後一列。
2、點選公式。
3、點選自動求和。
4、按住鍵盤上enter鍵,進行確定,即可得出求和。
sql語句中關聯求和,sql 多表關聯 求和語句 怎麼寫
這個用函式sum和case when即可實現 select 姓名,sum case when 姓名 a then 工作量 when 姓名 b then 工作量 when 姓名 c then 工作量 when 姓名 d then 工作量 end from table group by 姓名 selec...
SQL欄位累加求和的問題,SQL 多個字段值相加後排序問題
select id,string1,string2 from table union select id 0,string1 string1 小計 countresult count 1 sum1 sum string2 from talbe group by string1 union selec...
sql語句統計數量,統計欄位的值的數量
select type,count as 總數量,sum case when level 一級 then 1 else 0 end as 一級,sum case when level 二級 then 1 else 0 end as 二級,sum case when level then 1 else...