First and Foremost, this is part of an assignment.
I am trying to use the COUNT function as part of a query in relation to the Northwind database. The query should retur
The below query should work.
SELECT Customers.CustomerID, Customers.CompanyName, COUNT(*) FROM Orders, Customers WHERE Customers.CustomerID = Orders.CustomerID group by Orders.CustomerID