sql的SUM函数没有返回值

sql的SUM函数没有返回值

本文介绍了sql的SUM函数没有返回值..的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

喜!!我需要从购买表中返回价格总和,但我没有得到价值...



价值显示在标签上..



这是代码...



string stat =SELECT SUM(价格)作为购买价格WHERE [购买月份] =''+ purch_month +'';



OleDbCommand cmd = new OleDbCommand(stat,con);





有人可以帮我解决这个问题..



先谢谢你们::) div class =h2_lin>解决方案



hi!! i need to return the sum of price from purchases table, but i am not getting the value...

the value is displayed on label..

this is the code...

string stat = "SELECT SUM(Price)as Price from Purchases WHERE [Month of Purchase] = ''" + purch_month + "''";

OleDbCommand cmd = new OleDbCommand(stat, con);


can someone help me with this problem..

Thanks in Advance.. :)

解决方案



这篇关于sql的SUM函数没有返回值..的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-19 02:02