카테시안 곱(Cartesian Product)
두 집합 A,B의 원소들로 만들어지는 모든 순서쌍 (a,b)들의 집합
ex) A = {1,2}, B = {c,d}
A x B = {(1,c),(1,d),(2,c),(2,d)}
- 실습을 위해 부모자식 간의 관계를 삭제 (== FK 삭제) 후 데이터 추가
- ALTER TABLE [테이블명] DROP CONSTRAINT [제약조건의 이름]
select * from information_schema.table_constraints where TABLE_NAME = 'emp';
alter table emp drop constraint emp_ibfk_1;
insert into emp(ename,job,deptno,hiredate) values('kim','manager',6,str_to_date('14/06/02','%Y/%m/%d'));