Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Database] 정규화 #64
[Database] 정규화 #64
Changes from 2 commits
7079176
0d2392a
5a624c0
617b486
92f0550
7ebe650
738dda7
cb8fccf
4102ee4
a063237
82ae39f
ad3b190
5c27213
54d9524
2bc7c9b
f2b9504
c02208f
2b23dde
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
INF -> 1NF인 것 같네요!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
수정해놓겠습니다!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
각 종속 관계를
왜 제거해야 하는지
에 대한 설명이 추가되면 좋을 것 같아요 !!There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
모든 종속은 이상값을 최소화하고 제거하기 위함인데 추가해놓겠습니다!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
예를 들면 어떤 경우인지 알 수 있을까요?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A B C
ㅡㅡㅡㅡㅡ
s1 p1 c2
s1 p2 c1
s2 p1 c1
s1 p1 c1
이 테이블의 경우[A,B] [B,C] [A,C] 로 쪼갤때 아래와 같습니다
A B
ㅡㅡㅡ
s1 p1
s1 p2
s2 p1
B C
ㅡㅡㅡ
p1 c2
p2 c1
p1 c1
A D
ㅡㅡㅡ
s1 c2
s1 c1
s2 c1
[A,B]+[B,C]+[A,C] 다시 조인하면
A B C
ㅡㅡㅡㅡㅡ
s1 p1 c2
s1 p1 c1
s1 p2 c1
s2 p1 c2 ===> 이상값 발견!
s2 p1 c1
이런 이상 상황을 없애기 위해 제 5정규형을 시행합니다. 적분상수를 떠올리시면 편할 것 같아요!
@Seogeurim
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
오 !!! 오 !! 신기하네요 바아로 이해됐습니당 !! 감사합니다 ~!!