SELECT Address.AddressName, Problem.[Problem ID], Problem.ProblemDescription, Problem.ProblemSolution, CustomerDetails.CustomerName, CustomerDetails.PostTally, CustomerDetails.StaffNumber, CustomerDetails.NTNumber, CustomerDetails.ContactNumber
FROM CustomerDetails INNER JOIN (Address INNER JOIN Problem ON Address.AddressID = Problem.AddressID) ON CustomerDetails.CustomerID = Problem.CustomerID;
this is the select statement that was generated by Access yet still I cannot enter information into two fields which are problemDescription and problemSolution, would a different type of join enable me to input data?
Thanks Again
Sarah
|