일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- vue Carousel
- NoSQL
- 정보처리산업기사
- mybatis
- INSERT
- egov
- 부스트코스
- Ajax
- vue.js
- 구멍가게코딩단
- bulkinsert
- github
- jdbc
- MariaDB
- JSON
- 오라클
- 마스킹
- Tomcat
- spring
- java
- insertAll
- jsp
- JAXBContext
- vscode tutorial
- query
- swipe 배너
- checkbox
- mysql
- 기출문제
- JQuery
Archives
- Today
- Total
개발새발
[mysql] 외래키 제약조건 실패 (on delete cascade) 본문
728x90
반응형
Cannot delete or update a parent row: a foreign key constraint fails (`test`.`tbl_reply`, CONSTRAINT `fk_board` FOREIGN KEY (`bno`) REFERENCES `tbl_board` (`bno`)) : 부모 행을 삭제하거나 업데이트 할 수 없습니다 : 외래 키 제약 조건 실패 |
기본키를 삭제할 때, 해당 기본키를 외래키로 하는 모든 값이 삭제되야 하는 경우도 있을 것이다. 그냥 DELETE를 이용해서 삭제해도 되겠지만, 테이블 구조가 복잡할 경우 까다로운 작업이 될 수 있다.
MySQL은 단일 DELETE 쿼리에 대해서 하위 테이블의 데이터를 자동으로 삭제 할 수 있도록 외래키에 대해서
ON DELETE CASCADE 설정을 할 수 있다.
alter table tbl_reply add constraint fk_board foreign key (bno) references tbl_board (bno) on delete cascade;
728x90
반응형
'[error]' 카테고리의 다른 글
invalid input syntax for type timestamp: "" (0) | 2020.09.07 |
---|---|
[error] "Multiple annotations found at this line" (0) | 2020.06.24 |
The server time zone value 'KST' is unrecognized or represents more than one time zone (0) | 2020.06.09 |
[tomcat] May be locked by another process (0) | 2020.06.09 |
[github] git 충돌 overwrite (0) | 2020.05.13 |
Comments