如何找到股票..?
我有一个“交易”表,其中有 ProductID(int)、TransactionType(boolean)、Qty(int) 等字段。
当我们购买时,TransactionType 为 True,而当我们在销售时,TransactionType 为 False..
Id Type Qty
1 true 3
1 true 9
1 False 2
如果我购买了 12 数量的 productId 1,
并出售了 2 数量的 productId 1,
那么我怎样才能获得剩余的库存......?