我有三個表:減值
Plans(PlanID(key), Capacity)
CustomerInProject(VahedID, cinpid(key))
Vahed(VahedID(key), PlanID,...)
此查詢顯示房子有相同數量的PlanID
(地圖)那個人僱用的:
select
count(*)
from
Vahed as v2,
CustomerInProject
where
CustomerInProject.VahedID = v2.VahedID
group by PlanID
Plans
有一個int
字段名爲Capacity
。我想從上面的查詢中減去Capacity
。我怎樣才能做到這一點?
[避免使用舊式'JOIN'語法(http://sqlblog.com/blogs/aaron_bertrand/archive/2009/10/08/bad-habits-to-kick-using-old- style-joins.aspx) –
你可以發佈三個表的表結構嗎?只包括相關的欄目。 –