我有下表,带有属性:
vendor_invoicedetails
Venid(Pk)
ven_inv_ref(Fk)
Item_Code
Item_Name
UnitPrice
VenQuantity
我想将 with 相乘
unitPrice
以VenQuantity
获得我对以下查询所做的总价select item_code, VEN_INV_REF, unitprice * ven_itemquantity as total from vendor_invoicedetails;
我想要的是将
TotalPrice
两个相同Ven_inv_Ref(Fk)
列的总计相加。
在上图中,我想对具有相同VEN_INV_REF
编号的条目求和。