我的数据库中有 5 个表
我希望我的 SQL Server 查询可以像这样运行:
但我不知道我怎么能得到它,所以请帮助我。谢谢。
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)