我从来没有为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号线 中的引用列数 外键与number of不同 引用列、表 “question_bank”。

你能发现错误吗?


当前回答

像你一样,我通常不手动创建外键,但如果出于某种原因,我需要脚本这样做,我通常使用ms sql server管理工作室创建它,然后保存更改,我选择表设计器|生成更改脚本

其他回答

这个脚本是关于用外键创建表的,我添加了引用完整性约束sql-server。

create table exams
(  
    exam_id int primary key,
    exam_name varchar(50),
);

create table question_bank 
(
    question_id int primary key,
    question_exam_id int not null,
    question_text varchar(1024) not null,
    question_point_value decimal,
    constraint question_exam_id_fk
       foreign key references exams(exam_id)
               ON DELETE CASCADE
);

如果你想通过查询创建两个表的列到一个关系中,请尝试以下操作:

Alter table Foreign_Key_Table_name add constraint 
Foreign_Key_Table_name_Columnname_FK
Foreign Key (Column_name) references 
Another_Table_name(Another_Table_Column_name)
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 fk_questionbank_exams foreign key (question_exam_id) references exams (exam_id)
);

像你一样,我通常不手动创建外键,但如果出于某种原因,我需要脚本这样做,我通常使用ms sql server管理工作室创建它,然后保存更改,我选择表设计器|生成更改脚本

我总是使用这种语法在两个表之间创建外键约束

Alter Table ForeignKeyTable
Add constraint `ForeignKeyTable_ForeignKeyColumn_FK`
`Foreign key (ForeignKeyColumn)` references `PrimaryKeyTable (PrimaryKeyColumn)`

即。

Alter Table tblEmployee
Add constraint tblEmployee_DepartmentID_FK
foreign key (DepartmentID) references tblDepartment (ID)