SQL - INNER JOIN
Consider these tables:
Why does this query cause an error?
Products(ProductID PK, Name)Sales(ProductID FK, Quantity)Why does this query cause an error?
SELECT * FROM Products JOIN Sales ON Products.ID = Sales.ProductID;
