我有两个Select Statements返回正确的信息。
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之前,它必须采用上面的格式。
答案 0 :(得分:3)
这应该让你入门
select partQnty = sum(part_qnty)
, partCount = count(parts_id)
from claimParts cp join claims c on cp.claim_id = c.claims_id
答案 1 :(得分:0)
我的问题的答案是将partqnty语句和partcount语句转换为varchars并在它们之间添加“/”。
convert(varchar(10),(Select count(parts_ID) from ClaimParts where claim_ID = Claims.Claim_ID))+'/'+convert(varchar(10),(Select SUM(Part_Qnty) from ClaimParts where claim_ID = Claims.Claim_ID)) AS lvq,