sql查詢列和
1. sql語句查詢出結果如何求一列的和啊
select sum(欄位名) as 變數名 from tables
調用sum和使用 變數名 就可以了。
2. 怎麼查詢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
3. sql語句列求和
select sum(數據1),sum(數據2) from table
如果表裡只有這兩列,則語句如上,如果還有其它列並且需要分組,則添加group by語句,如:
select sum(數據1),sum(數據2) from table
group by 其它列
4. sql如何列統計求和
有個思路:
1、在系統表中找出表名對應的列名,並把每個列名都加上SUM()
select 'sum('+name+'),' from syscolumns
where id=(select id from sysobjects where name='表名')
2、把查詢結果復制出來,前面加select 後面加 from 表名。。。。你懂的
注意:復制出來後把最後一個逗號去掉。
3、執行查詢
也可以寫個存儲過程來完成。
5. SQL怎麼對某一列進行求和 並計數一句sql語句可以寫么
1.
可以的;
2.
select
sum(列名),
Count(列名)
From
表
3.
你可以把問題描述的更加清楚點,才能更加有針對性的回答。
6. sql 如何查詢一個表中的兩列之和
select column1+column2 as 和 from table
7. SQL怎麼對某一列進行求和 並計數一句sql語句可以寫么
SELECTSUM(求和列名)AS總和,COUNT(計數列名)AS計數FROM[表名]
8. sql語句查詢 每行 指定列 的和
select xingming,shuxue+yuwen as zonghe,shuxue,yuwen from table1;
這是每條記錄的和
求總數是:
select sum(shuxue+yuwen) as zonghe,sum(shuxue) as shuxue,sum(yuwen) as yuwen from table1;
這是求總和
9. sql語句怎麼查詢一列數據的總和
MS-SQL中求和如下:
1、select sum (foamt) from t_ACRD_GthMst
2、select sum (foamt) from t_ACPD_PayMst
t_ACRD_GthMst和t_ACPD_PayMst表示某ERP系統中的兩個表,foamt表示要求和的一例。
(9)sql查詢列和擴展閱讀:
常見語句
更新:update table1 set field1=value1 where 范圍
查找:select * from table1 where field1 like 』%value1%』 (所有包含『value1』這個模式的字元串)
排序:select * from table1 order by field1,field2 [desc]
求和:select sum(field1) as sumvalue from table1
平均:select avg(field1) as avgvalue from table1
最大:select max(field1) as maxvalue from table1
最小:select min(field1) as minvalue from table1[separator]
10. SQL獲取同一列的數值之和應該怎麼寫呢
usingSystem;
usingSystem.Collections.Generic;
usingSystem.Linq;
usingSystem.Text;
usingSystem.Data;
usingSystem.Data.SqlClient;
///<summary>
///執行查詢首行首列的SQL語句
///</summary>
///<paramname="sql">要執行的SQL語句-string</param>
///<returns>返回字元串-string</returns>
publicstaticstringExecuteSql_string(stringsql)
{
stringstr="";
SqlConnectioncon=newSqlConnection("DRIVER=SQLServer;SERVER=192.168.1.201;UID=sa;PWD=;DATABASE=ku");
try
{
OpenCon(con);
SqlCommandcmd=newSqlCommand();
cmd.Connection=con;
cmd.CommandText=sql;
str=Convert.ToString(cmd.ExecuteScalar());
}
catch(Exceptionerr)
{
thrownewException(err.Message);
}
finally
{
CloseCon(con);
}
returnstr;
}
MsgBOX
MsgBOX.Show(ExecuteSql_string("selectsum(lie)frombiao"));