⑴ 怎麼查詢sql表兩列相加的和
做個簡單的。
兩個數據表db1,db2
查詢結果A是從數據表db1獲取的:
select names, sale from db1
查詢結果B是從數據表db2獲取的:
select names, sale from db2
則查詢結果C:
select names,sum(sale) as sale
from
(select names, sale from db1
union
select names, sale from db2
)
group by names
⑵ sql如何列統計求和
有個思路緩源:
1、在系統表中找出表名對應的列名,並把每個列名都加上SUM()
select 'sum('+name+'),' from syscolumns
where id=(select id from sysobjects where name='表名')
2、物裂把查詢結果復制出來,前面加select 後面加 from 表名。。。擾螞態。你懂的
注意:復制出來後把最後一個逗號去掉。
3、執行查詢
也可以寫個存儲過程來完成。
⑶ SQL中如何將兩個查詢結果相加
做個簡單的。x0dx0a兩個數據表db1,db2x0dx0ax0dx0a查爛搜詢結飢雀歷果A是從數歲閉據表db1獲取的:x0dx0aselectnames,salefromdb1x0dx0ax0dx0a查詢結果B是從數據表db2獲取的:x0dx0aselectnames,salefromdb2x0dx0ax0dx0a則查詢結果C:x0dx0ax0dx0aselectnames,sum(sale)assalex0dx0afromx0dx0a(selectnames,,salefromdb2x0dx0a)x0dx0agroupbynames
⑷ mysql資料庫有兩列數據,怎麼求和,具體看詳情!
select sum(case b is null when a else b end) from table;
⑸ sql 計算結果兩列的和
selectsum(xxxx)asa,sum(xxxx)asb,sum(xxxx)+sum(xxxx)ascfromxxxxx
⑹ sql中怎麼將兩個做了sum之後的值相加
1.打開一個數據中包含整數值的表,可以看到右下角的表數據。
⑺ sql語句列求和
select sum(數據1),sum(數據2) from table
如果表裡只有這兩列,則語句如上,如果還有其它列並且需要分組,則添加group by語句,如:
select sum(數據1),sum(數據2) from table
group by 其它列
⑻ 怎麼把兩列的數據求和(先每列求和,再把結果再相加)sql資料庫
1、在數據中打開一個存在整數數值的表,然後可以看到右下角就有查看的表格數據。
⑼ SQL 根據兩列取最大值求和
select 名稱,sum(得分) from 表名 group by 名稱
希望對你有所幫助。
⑽ SQL語句,如何查詢表中兩列的值,將這兩列相加,作為第三列的值
select
列三
=
列一+列二
from
tablename;這個只是顯示不會更新數據表
如果是更新數據表的話:update
tablename
set
列三
=
select
列一+列二
from
tablename;