0
我有兩個表:寫SELECT查詢
table1 =tbl_main:
item_id fastec_qty
001 102
002 200
003 300
004 400
table2= tbl_dOrder
order_id item_id amount
1001 001 30
1001 002 40
1002 001 50
1002 003 70
我如何可以編寫一個查詢,使表的結果如下:
item_id amount difference
001 102 22
002 200 160
003 300 230
004 400 400
在表中的金額之間的差額1和從表2中支付的總金額。
你爲什麼把你的問題標記爲'c#'。你需要linq嗎? –
我想在datagridview控件中顯示結果。 –