If i have entities student and instructor, is it better to have 2 tables like:
Table 1: Person
PK: ID
Cols: PersonType, Name
Table 2: PersonType
PK: ID
Cols: Type desc
Or is it better to have 2 tables like:
Table 1: Student
PK: ID
Cols: Name
Table 2: Instructor
PK: ID
Cols: Name
Any suggestions how i should go about this please.
Thanks.