我的数据库中有5个表
我希望我的SQL Server查询可以像这样运行:
但我不知道怎么能这样做,所以请帮助我。 感谢。
答案 0 :(得分:1)
select s.SupnName,
TotalPurchase = (select sum(p.Qntty * p.PurchsePrice)
from ProductsTble p
where p.supid = s.supid),
TotalPayement = (select sum(c.Cashvalue)
from CashMovementTbl c
where c.supid = s.supid)
from SuppliersTble s;
确保您拥有索引ProductsTble(supid)
和CashMovementTbl(supid)