SQL Server에 대한 "손으로 코딩 된"개체 생성 코드는 없었으며 외래 키 제거는 SQL Server와 Postgres에서 다르게 보입니다. 지금까지 내 SQL은 다음과 같습니다.
drop table exams;
drop table question_bank;
drop table anwser_bank;
create table exams
(
exam_id uniqueidentifier primary key,
exam_name varchar(50),
);
create table question_bank
(
question_id uniqueidentifier primary key,
question_exam_id uniqueidentifier not null,
question_text varchar(1024) not null,
question_point_value decimal,
constraint question_exam_id foreign key references exams(exam_id)
);
create table anwser_bank
(
anwser_id uniqueidentifier primary key,
anwser_question_id uniqueidentifier,
anwser_text varchar(1024),
anwser_is_correct bit
);
쿼리를 실행할 때이 오류가 발생합니다.
메시지 8139, 수준 16, 상태 0, 줄 9 외래 키의 참조 열 수는 'question_bank'테이블의 참조 열 수와 다릅니다.
당신은 오류를 발견 할 수 있습니까?