이상현상(Anomaly)
이상현상(Anomaly)이상현상에는 삽입이상, 수정이상, 삭제이상이 있다. 삽입이상내가 원하지 않은 데이터까지 삽입해야하는 경우.예를들어, 사원 사원번호 이름 급여 팀코드 팀명 (NOT NULL) 001 꼬북이 2,000 A 기획팀 002 피카츄 3,000 !!! 팀이 아직 안정해졌어도, 꼭 입력을 해야하면 삽입이상. 신입사원 피카츄가 들어왔지만 아직 부서가 정해지지 않았을 때, 사원 테이블에 피카츄를 추가하기 위해서는 부서까지 입력해야 하는 경우. 수정이상내가 원하지 않는 데이터까지 수정해야하는 경우. 사원 사원번호 이름 급여 팀코드 팀명 001 꼬북이 2,000 A 기획팀 -> 교육팀 002 피카츄 3,000 A 기획팀 -> 교육팀 피카츄의 부서를 교육팀으로 수정할 때, 꼬북이의 팀까지 수정되는 경우..
더보기
Day 3: Permutations, Combinations
HackerRank 10 Days of statistics Permutations(순열): If there are people and chairs. People = {A, B, C, ... }Chairs = {1,2,3, ... } n = number of Peopler = number of chairs And if we let putting these five people in the five different chairs,it is a scenario, a permutation. (Click to see Khan Academy permutation lecture, if you need. ) When the number of people and chairs are the same.The number o..
더보기