I want to combine 3 tables in query..
Tables are:
Customer (CustomerID, FirstName, LastName)
Car (CarID, CustomerID, Make, Model)
Service (ServiceID, CustomerID, Kilometers, DateOfService)
If i put CarID in table Service it doesn't work (can't create new record) neither doesn't work if i enter CarID in query..
How to solve this?
I want this to be joined beacuse when ill create new service i'll pick customer and than i can choose related car (if customer has more than 1)
Thanks