0
如何組合輸出值。我有我的查詢低於It.Finance
下3個值...假設高,中,low..i希望中,低相結合的平均值,這意味着我的輸出值可以組合輸出值ina查詢
高
平均(對於中等和低)
select count(h.Dept_id) as DeptCount,
i.Id as CompanyId,
i.Account as AccountTotal,
i.Technology as IT,
ISNULL(it.Finance,'NoCapacity') as School
from Institution i left join
History h on h.Institution_id = i.Id left join
xxxxx
yyyyy
group by i.Id,i.Account,i.Technology,it.Finance
是否有可能?
你可以稍微更具體一點與解釋,或者更確切地說,我們展示了一些樣本數據表架構,並基於該預期輸出..: ) – bonCodigo