Need help setting up tables to track customer details/ orders and cost of service/s provided.
Tables I think I need:
Customer Details Table
CustomerID
FirstName
LastName
CompanyName
HouseName
StreetAddress
Area
County
PostCode
HomePhone
MobilePhone
Notes
Bookings Table
BookingID
CustomerID
BookingDate
BookingTime
Technician
TotalPrice
Job Type Table
JobTypeID (Listed job type for lookup. eg. carpet cleaning or upholstery cleaning)
Job Description Table
JobdescriptionID (Listed job Descriptions for lookup. eg. Living room or 3 seater sofa)
UnitPrice
Technicians Table
TechnicianID (Listed technicians for lookup. eg. mick or john)
Not sure how to create the correct relationships or even if I have used the correct tables and fields. Can someone guide me as to how I create the correct relationships so I can track the jobs of each customer. Please note that customer can order more than one Job per booking. I have no idea how to implement this.