Hi, a quick question in regards to table design..
Let's say I am designing a loan application database. As it is right now, I will have 2 tables..
Applicant (ApplicantID, FirstName , LastName, SSN, Email... ) and
Co-Applicant(CoApplicantID, FirstName, LastName , SSN, Email.., ApplicantID)
Should I consider having just one table because all the fields are the same.. ??
Person( PersonID, FirstName, LastName , SSN, Email...,ParentID (This determines if it is a co-applicant))
What are the pros and cons of these two approaches ?