这中间一些代码我有点不明白。
SELECT ProductName, od.ProductID,
AVG(od.UnitPrice*(1.00-Discount)) AS AvgPrice, SUM(od.Quantity) AS Units
FROM [Order Details] od, Products p
WHERE od.ProductID=p.ProductID
GROUP BY ProductName, od.ProductID
为什么代码中会出现od/p呢。(例如od.ProductID,[Order Details] od, Products p)
我是在系统自带的northwind数据库 中执行上面代码的。运行没错但我不太明白,请各位大哥指点。