嗨,我在 vb.net 中使用 datagridview,我想像这样填充数据

Hi I'm using datagridview in vb.net , I want to fill data like this

提问人:krishna bajpai 提问时间:11/17/2023 最后编辑:krishna bajpai 更新时间:11/17/2023 访问量:28

问:

在此处输入图像描述嗨,我在 vb.net 中使用 datagridview

这是我的 SQL

“选择 0 作为 Serial,Agent.Agent,ProductionSlip.AgentID,Product.Product,Category,Unit.Unit,IsNULL(ProductStock.AgSlipID,0) As AgSlipID,ProductStock.ProductID, Sum(Case When TransTypeID=23 then IsNULL(Qty,0) else 0 end) As SlipQty, Sum(Case When TransTypeID=24 then IsNULL(Qty,0) else 0 end) As DisQty, Sum(Case When TransTypeID=23 then IsNULL(Qty,0) else -IsNULL(Qty,0) end) As BalQty from ProductStock Left Join ProductionSlip On ProductStock.AgSlipID=ProductionSlip.ProductionSlipID Left Join代理 On ProductionSlip.AgentID=Agent.AgentID 左联接产品 On ProductStock.ProductID=Product.ProductID 左联接单元 Product.UnitID=Unit.UnitID 其中 TransTypeID 在 (23,24) 中 按 Agent.Agent,ProductionSlip.AgentID,Product.Product,Category,Unit.Unit,IsNULL(ProductStock.AgSlipID,0),ProductStock.ProductID 具有总和(TransTypeID=23 时的情况 IsNULL(Qty,0) else -IsNULL(Qty,0) end)>0 按产品排序。

我想像这样在datagridview中填充数据。

请帮忙 谢谢

你好 我的 Sql 查询

""

vb.net

评论


答: 暂无答案