Back-end/MySQL (1) 썸네일형 리스트형 MySQL 기본 용어 Relation(Table) cardinality: tuple의 개수 degree(차수): 전체 attribute의 개수 Keys - Primary Key(PK): tuple을 대표할 수 있는 key (학번, id, ...) - null 값을 가질 수 없다. - Forien Key(FK): 현재 table에서 다른 table(부모 table)의 기본키를 참조할 때 해당 속성은 현재 table(자식 table)의 Forien Key가 된다. - 부모 table에 없는 값이 있을 수 있기 때문에 null 값을 가질 수 있다. 문법 select from where Example Query 1. emp table에서 2. job 속성의 값이 SALES인 tuple은 제외 3. job이 같은 값끼리 grou.. 이전 1 다음