higher level entity에 대한 schema를 만든다
each lower level entity set에 대한 schema를 만든다.
이 때, higher-level entity set의 primary key와 local attributes를 포함시킨다.
schema | attributes |
---|---|
person | ID, name, street, city |
student | ID, tot_cred |
employee | ID, salary |
정보의 중복은 줄지만, 찾는 시간이 늘어난다.
모든 local, inherited attribute을 갖는 entity set에 대한 schema를 만든다
schema | attributes |
---|---|
person | ID, name, street, city |
student | ID, name, street, city, tot_cred |
employee | ID, name, street, city, salary |
정보의 중복이 많아지고, 찾는 시간을 줄어든다.