要删除外键,应使用哪条语句?
A: ALTER TABLE
B: DELETE TABLE
C: ALTER FOREIGN KEY
D: DELETE FOREIGN KEY
A: ALTER TABLE
B: DELETE TABLE
C: ALTER FOREIGN KEY
D: DELETE FOREIGN KEY
举一反三
- 阅读下列代码: alter table表名 ____ foreign key 外键名; 若想删除外键,则需要在空白处填写 A: alter B: delete C: drop D: truncate
- 设置score表的sid列为外键,关联stu表的sid列,可以使用以下哪条命令实现。 A: alter table stu add constraint fk_sid foreign key(sid) references stu(sid); B: alter table stu add constraint fk_sid foreign key(sid) references score(sid); C: alter table score add constraint fk_sid foreign key(sid) references sore(sid); D: alter table score add constraint fk_sid foreign key(sid) references stu(sid);
- 以下哪些语句不可以实现在已创建好的表上添加一个外键? A: Alter table 表名 add foreign key(键名) reference 关联表(关联键名) B: Alter table 表名 add foreign key(键名) C: Alter 表名 add foreign key(键名) reference 关联表(关联键名) D: Alter 表名 add foreign key(键名)
- 设置score表的sid列为外键,关联stu表的sid列,可以使用以下哪条命令实现。() A: alter table stu<br> add constraint fk_sid foreign key(sid) references stu(sid); B: alter table stu<br> add constraint fk_sid foreign key(sid) references score(sid); C: alter table score<br> add constraint fk_sid foreign key(sid) references sore(sid); D: alter table score<br> add constraint fk_sid foreign key(sid) references stu(sid);
- 删除外键约束的语句是 ( ) 。 A: delete foreign key B: delete key FK C: drop foreign key D: drop key FK