오라클 에러 (ORA-02267: column type incompatible with referenced column type)
Back-End/Problems 2019. 7. 18. 11:29오류 보고 -
ORA-02267: column type incompatible with referenced column type
02267. 00000 - "column type incompatible with referenced column type"
*Cause: The datatype of the referencing column is incompatible with the
1 2 3 | ALTER TABLE ADMIN_BOARD_REPLY ADD CONSTRAINT bno FOREIGN KEY (bno) REFERENCES ADMIN_BOARD(bno); | cs |
정리 : 두 테이블간의 컬럼 이름이 같아도 데이터 타입이 다르면 FK 제약조건을 설정할 수 없다.
지금보면 한쪽은 VARCHAR2 타입이고, 한쪽은 NUMBER 타입이라 참조시킬수 없다.
'Back-End > Problems' 카테고리의 다른 글
getter for property named 에러 해결 방법 (0) | 2019.08.19 |
---|---|
오라클 ORA-01722: invalid number 에러 (0) | 2019.07.23 |
Spring (STS4) <c:choose>태그 안쪽 주석 오류 (0) | 2019.06.17 |
스프링 에러 (0) | 2019.06.13 |
Spring resources [js, css, img] 맵핑 (No mapping for GET) (0) | 2019.06.07 |