Я ніколи не "кодував" ручним кодом створення об'єктів для 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
);
Коли я запускаю запит, я отримую цю помилку:
Msg 8139, Рівень 16, стан 0, рядок 9 Кількість стовпців посилань у зовнішньому ключі відрізняється від кількості стовпців, на які посилається, таблиці «питання_банку».
Чи можете ви помітити помилку?