Hi,
Im using MS access 2003 as my database
I have 3 tables
Table 1 name is Product with ProductID, ProductTitle
Table 2 name is departmentProduct with ProductID , DepartmentID
Table 3 name is Department, with DepartmentID, DeptName
i wanna get productTitle based on DepartmentName
my query is
Select ProductTitle
from Product a inner join departmentProduct b
on a.ProductID = b.productID
inner join department c
on b.departmentId = c.departmentID
it doesn't work giving me error Syntax operator
Im using MS access 2003 as my database
I have 3 tables
Table 1 name is Product with ProductID, ProductTitle
Table 2 name is departmentProduct with ProductID , DepartmentID
Table 3 name is Department, with DepartmentID, DeptName
i wanna get productTitle based on DepartmentName
my query is
Select ProductTitle
from Product a inner join departmentProduct b
on a.ProductID = b.productID
inner join department c
on b.departmentId = c.departmentID
it doesn't work giving me error Syntax operator