删除stu表,建立在sid列上的主键,可使用以下哪条命令。
A: alter table stu drop primary keys;
B: alter table stu drop primary key;
C: alter table stu drop primary key sid;
D: alter table stu drop constraint sid;
A: alter table stu drop primary keys;
B: alter table stu drop primary key;
C: alter table stu drop primary key sid;
D: alter table stu drop constraint sid;
举一反三
- 设置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);
- 设置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);
- 加入需要给stu表删除一个字段age,下列哪个正确 A: alter table stu drop age; B: drop table age C: drop table drop age;
- 在以下的语句中,哪一个将移除一个主键和依赖于这个主键的所有约束 A: ALTER TABLE table B: DROP PRIMARY KEY CASECADE; C: ALTER TABLE table D: REMOVE CONSTRAINT PRIMARY KEY CASCADE; E: ALTER TABLE table F: DISABLE CONSTRAINT PRIMARY KEY CASCADE; G: 一个主键不能被移除
- 以下哪条命令用于删除一个约束()。 A: Alter TABLE MODIFY CONSTRAINT B: Drop CONSTRAINT C: Alter TABLE Drop CONSTRAINT D: Alter CONSTRAINT Drop