You are using the following MySQL query to select all records from tables Products and Sales.
SELECT *
FROM Products
XXX
ON Products.SalesID=Sales.SalesID;
What should be used in place of XXX to return records matching in both tables?
Options
- INNER JOIN Sales
- INNER JOIN SalesID
- INNER JOIN Sales.SalesID
- INNER JOIN Products