我有兩個Select語句返回正確的信息。合併兩個Select語句並添加格式化
PartQnty = (Select SUM(Part_Qnty) from ClaimParts where claim_ID = Claims.Claim_ID),
和
PartCount = (Select count(parts_ID) from ClaimParts where claim_ID = Claims.Claim_ID),
我需要在這個格式結合共同作用的結果:「PartCount/PartQnty」(2/1) 它需要返回到之前的格式以上cfgridcolumn。
什麼版本的SQL可以提供更多的查詢?像這樣的sum()子查詢通常可以被重構爲效率更高,並且可以加快應用程序的速度。 – Shawn