এসকিউএল সার্ভারের জন্য আমি কখনই "হ্যান্ড-কোডড" অবজেক্ট ক্রিয়েশন কোডটি পাইনি এবং বিদেশী কী ডিক্লেরেশন এসকিউএল সার্ভার এবং পোস্টগ্রিসের মধ্যে আপাতদৃষ্টিতে পৃথক। এখানে এখন পর্যন্ত আমার স্কয়ার রয়েছে:
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 বিদেশী কীতে রেফারেন্সিং কলামগুলির সংখ্যা উল্লেখযোগ্য কলাম, টেবিল 'প্রশ্ন_ব্যাঙ্ক' থেকে পৃথক।
আপনি ত্রুটি স্পট করতে পারেন?