I have two tables, PersonalInformation (PersonID, LastName, FirstName) and Address(Street, City, State, ZipCode). I would like to show these two tables fields in one view "Create" and save the information to the respective table. Note This is a one to one relation where for person there is one address.
Thank you!
Jignesh KumarPosted Oct 1, 2020, 8:45 AM
Schleid AlexPosted Oct 1, 2020, 7:04 AM
Junaid MuslaPosted Oct 1, 2020, 12:26 AM
Your Address table is missing a reference column to PersonalInformation table.
Would suggest the schema of Address table as:
Address(AddressId,PersonID,Street, City, State, ZipCode).
Sachin SinghPosted Sep 30, 2020, 11:40 PM