오라클 에러 (ORA-02267: column type incompatible with referenced column type)

Back-End/Problems 2019. 7. 18. 11:29
728x90
반응형

오류 보고 -

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 타입이라 참조시킬수 없다.






728x90
반응형
: