本文介绍了计算数据库DataGridView列的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好,
我正在做一个小项目,但有一个小问题:)
我有一个包含6列的数据库.加载Form1时,我想从"TotalPrice"列中查看Label1中的总金额.

这可能吗?
谢谢.

我使用Visual Basic 2010

Hi to all of you,
I''m working on a small project and I have a small problem :)
I have a database with 6 columns. When I load Form1, I want to see calculate total amount in Label1 from Column "TotalPrice".

Is this possible?
Thank you.

I use Visual Basic 2010

推荐答案

SELECT Sum(TotalPrice) FROM TableName



这将返回一个包含TotalPrice列中所有值之和的单个值.

祝你好运!
爱德华(Eduard)



This will return a single value containing the sum of all values in the TotalPrice columns.

Good luck!
Eduard



这篇关于计算数据库DataGridView列的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-27 21:43