T
Tom
I have one last type of problem that I'm working. This
problem references the sample database that comes with
Access called "Northwinds".
This problem involves joining multiple tables and I have
to write this query free hand and not with the SQL design
tool.
My problem is determining "How many orders
include "Tofu"?"
The query that I created is ....
SELECT COUNT OrderID
WHERE OrderID =
(SELECT OrderID
FROM Order Details
WHERE ProductID =
(SELECT ProductID
FROM Products
WHERE ProductName = 'Tofu'));
but it is not working ... can someone give me some advice
as to how to proceed?
Thanks - Tom
problem references the sample database that comes with
Access called "Northwinds".
This problem involves joining multiple tables and I have
to write this query free hand and not with the SQL design
tool.
My problem is determining "How many orders
include "Tofu"?"
The query that I created is ....
SELECT COUNT OrderID
WHERE OrderID =
(SELECT OrderID
FROM Order Details
WHERE ProductID =
(SELECT ProductID
FROM Products
WHERE ProductName = 'Tofu'));
but it is not working ... can someone give me some advice
as to how to proceed?
Thanks - Tom