2012-11-17 51 views
-1

嗨,大家好,我剛剛開始學習asp.net。 現在我正在嘗試開發一個帶有sql數據庫的計費軟件。我想知道如何計算網格視圖格式的產品總數和總數。條例草案細節由asp.net

並且還想知道將產品數量與獎品相乘。

幫助剛剛加入一些代碼在我的項目

回答

0

,如果你的意思是SQL語句,也許可能是這樣的:

要計算每個產品的分類彙總賣

select product.name [item], 
     product.price [price], 
     order.quantity [quantity], 
     product.price*order.quantity [subtotal] 
from product p, order o 
where o.ProductId = p.ProductId 
and o.OrderId = @orderId 

要計算每個訂單的總價可能是這樣的:

select o.orderId, sum(product.price*order.quantity) 
from order o, product p 
group by order.OrderId 
and o.ProductId=p.ProductId 

the re這個querys sults可以被髮送到這樣的網格:

myGrid.DataSource= myDataSet; //dataset that returned the results