Hi, I am going to try to explain my problem. I have the following tables:
- TEACHER(tchr_id, nme, lst_nme)
- PHONE(phne_id, phne_nmber)
- ADDRESS(addrss_id, addrs_nmbr)
The relationship between TEACHER and PHONE is many-to-many, as well as the relationshion between TEACHER and ADDRESS. Therefore I have also these junction tables:
- TEACHER_PHONE(tchr_id, phne_id)
- TEACHER_ADDRESS(thcr_id, addrss_id)
I want a form that has to subforms, showing the data in table TEACHER, as well as the data in PHONE and ADDRESS. The main form is to display the data in TEACHER, and each one of the two subforms is to display the data in PHONE and ADDRESS.
Is it possible to do that? Thank you in advance for your answer.
- TEACHER(tchr_id, nme, lst_nme)
- PHONE(phne_id, phne_nmber)
- ADDRESS(addrss_id, addrs_nmbr)
The relationship between TEACHER and PHONE is many-to-many, as well as the relationshion between TEACHER and ADDRESS. Therefore I have also these junction tables:
- TEACHER_PHONE(tchr_id, phne_id)
- TEACHER_ADDRESS(thcr_id, addrss_id)
I want a form that has to subforms, showing the data in table TEACHER, as well as the data in PHONE and ADDRESS. The main form is to display the data in TEACHER, and each one of the two subforms is to display the data in PHONE and ADDRESS.
Is it possible to do that? Thank you in advance for your answer.