반응형
나는 그 방법을 알고 있습니다. 아래를 참조하십시오. 왜 그런지 모르겠습니까? 그것들은 무엇입니까?
create table orders (order_no int not null auto_increment, FK_cust_no int not null,
foreign key(FK_cust_no) references customer(cust_no), primary key(order_no)) type=InnoDB;
create table orders (order_no int not null auto_increment, FK_cust_no int not null,
foreign key(FK_cust_no) references customer(cust_no), primary key(order_no));
해결 방법
참조 페이지 https://stackoverflow.com/questions/1082194
반응형
'MySql' 카테고리의 다른 글
MySQL 직렬화 (데이터)를위한 mysql 컬럼 유형은 무엇입니까? (0) | 2021.02.08 |
---|---|
MySQL Workbench Edit Table Data는 읽기 전용입니다. (0) | 2021.02.08 |
MySQL은 n 일 전 날짜를 타임 스탬프로 가져옵니다. (0) | 2021.02.08 |
MySQL 다른 테이블에 일치하는 열이없는 MySQL 선택 행 (0) | 2021.02.08 |
MySQL 백업을 사용하여 information_schema 데이터베이스를 복원하는 방법 (0) | 2021.02.08 |
댓글