Let R(A1, A2) be a relation schema. Let dom(A1) = {0,1} and let dom(A2) = {a,b,c}. R(A1, A2) 가 관계 schema 라고 합시다. dom(A1) = {0,1} 이고 let dom(A2) = {a,b,c} 라고 하구요.
Then, dom(A1) x dom(A2) that is all possible combinations is {<0,a> , <0,b> , <0,c>, <1,a>, <1,b>, <1,c> }. 그렇다면 dom(A1) x dom(A2) 의 가능한 모든 조합은 {<0,a> , <0,b> , <0,c>, <1,a>, <1,b>, <1,c> } 입니다.
The relation state is r(R) Ì dom(A1) X dom(A2). 관계 state 는 r(R) Ì dom(A1) X dom(A2) 입니다.
For example, r(R) could be {<0,a> , <0,b> , <1,c> } and this is one possible state (or “population” or “extension”) r of the relation R, defined over A1 and A2. It has three 2-tuples: <0,a> , <0,b> , <1,c> 예를들어 r(R) 은 {<0,a> , <0,b> , <1,c> } 일 수 있으며 이건 A1 과 A2 로 정의된 한가지의 가능한 관계 R 의 state r인것이지요.
The definition of the terms is summarized in the following table 다음 테이블엔 용어들의 정의가 요약되어있습니다.