我有一个应用程序(C#)管理每个存储单元的库存水平。 但现在我想要全面了解每个库存单位的每种产品的库存水平。
例如,我在第一单元中有50
个苹果(ProductID 1),在第二单元中有25
,我使用此查询:
select StockLevel
from Supply
where ProductID = '1'
将结果放在一个文本框中,它总是会给我第一个 50 苹果的库存水平而不是 75 。
有没有办法可以轻松地将这些结果组合在一起?
答案 0 :(得分:2)
如果你想合并,你需要一个聚合函数,sum
在你的情况下:
select sum(StockLevel)
from Supply
where ProductID = '1'
并对苹果进行总结:75
即50 + 25
答案 1 :(得分:0)
您可以尝试这样
// Define the border style of the form to a dialog box.
this.FormBorderStyle = FormBorderStyle.FixedDialog;
// Set the MaximizeBox to false to remove the maximize box.
this.MaximizeBox = false;
// Set the MinimizeBox to false to remove the minimize box.
this.MinimizeBox = false;