Je n'ai jamais "codé à la main" le code de création d'objet pour SQL Server et la décomposition de clé étrangère est apparemment différente entre SQL Server et Postgres. Voici mon sql jusqu'ici:
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
);
Lorsque je lance la requête, j'obtiens cette erreur:
Msg 8139, Niveau 16, État 0, Ligne 9 Le nombre de colonnes faisant référence à une clé étrangère diffère du nombre de colonnes référencées, la table 'question_bank'.
Pouvez-vous repérer l'erreur?