SQLSERVER左右链接怎么写
发布网友
发布时间:2022-04-25 05:24
我来回答
共2个回答
热心网友
时间:2022-04-15 05:31
这个问题应该是因为后面表TC_InStorage的连接造成的,你对表TC_InStorage也应该用左连接的方式
select t.goodsid,t.goodsname,g.instorenofrom TC_Storage Main t
left join TC_InStorageDetail g on t.GoodsID = g.GoodsID
left join TC_InStorage m on g.InStoreNo = m.InStoreNo
where t.fWPLX = '无'
and m.InStoreDate >= '2014-07-01'
热心网友
时间:2022-04-15 06:49
select t.goodsid,t.goodsname,g.instoreno
from TC_StorageMain t
left join TC_InStorageDetail g on t.GoodsID = g.GoodsID
left join TC_InStorage m on 条件
where t.fWPLX = '无'
and g.InStoreNo = m.InStoreNo
and m.InStoreDate >= '2014-07-01'
这样,你的TC_StorageMain 的数据就会都显示了(符合你的where条件的数据)。