sql select 中套一个select 查询结果作为一个列值,如何实现
SELECTa.id,a.ItemName,a.ItemNumber,a.ItempArea,a.TotalPrices,a.SettlementPrice,b.name...
SELECT a.id,a.ItemName,a.ItemNumber,a.ItempArea,a.TotalPrices,a.SettlementPrice,b.name,(SELECT sum(innumber)
FROM ShouKuang where itemid=a.id) as shoukang
FROM Item as a,PMInfo as b
我有以上三个表 item是项目表,pminfo 是项目经理表,ShouKuang是每个项目的收款记录,现在我想直接通过select 语句获得项目信息,项目经理信息,跟每个项目的收款总额,但以上这条SQL语句得不到我想要的结果 展开
FROM ShouKuang where itemid=a.id) as shoukang
FROM Item as a,PMInfo as b
我有以上三个表 item是项目表,pminfo 是项目经理表,ShouKuang是每个项目的收款记录,现在我想直接通过select 语句获得项目信息,项目经理信息,跟每个项目的收款总额,但以上这条SQL语句得不到我想要的结果 展开
展开全部
select a.id,a.ItemName,a.ItemNumber,a.ItempArea,a.TotalPrices,a.SettlementPrice,b.name,c.shoukang from Item a,PMInfo b,(SELECT sum(innumber) shoukang,ItemNumber FROM ShouKuang group by ItemNumber)c where a.ItemNumber=b.ItemNumber and a.ItemNumber=c.ItemNumber;
追问
SELECT a.id,a.ItemName,a.ItemNumber,a.ItempArea,a.TotalPrices,a.SettlementPrice,b.name,c.shoukuang FROM JL_Item as a,JL_PMInfo as b,(SELECT sum(innumber)as shoukuang FROM Jl_ShouKuang where itemid=a.id) as c
我需要拿a.id做查询条件。
错误 提示
消息 4104,级别 16,状态 1,第 1 行
无法绑定由多个部分组成的标识符 "a.id"。
追答
where itemid=a.id) 这个地方属于括号里不能引用a了
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询