关于简单的视图问题
SELECT dbo.TradeValue.ID, dbo.TradeValue.ProductID, dbo.viewBidPrice.ProductName, dbo.viewBidPrice.BidPrice,dbo.TradeValue.ManType, dbo.TradeValue.[Value], dbo.TradeValue.ValueID, dbo.TradeValue.ValueMan,dbo.TradeValue.byValueID, dbo.TradeValue.byValueMan, dbo.TradeValue.ValueTime, dbo.TradeValue.Memo, dbo.TradeValue.Memo2
FROM dbo.TradeValue INNER JOIN
dbo.viewBidPrice ON dbo.TradeValue.ProductID=dbo.viewBidPrice.ProductID
以上视图有错误吗?为什么结果是不对的?
谢谢!