Getting syntax error saying
"Syntax error (missing operator) in query expression 'Products.[SupplierID] = Suppliers.[SupplierID] inner join Categories on Products.[CategoryID] = Categories.[CategoryID] where Suppliers.[Country] = 'USA' order by ProductName;'
I can't seem to find whats wrong with it.
The query code is below:
Select ProductName, CompanyName, CategoryName
from Products
inner join Suppliers on Products.[SupplierID] = Suppliers.[SupplierID]
inner join Categories on Products.[CategoryID] = Categories.[CategoryID]
where Suppliers.[Country] = 'USA'
order by ProductName;