若要删除职工表中的职称字段,应该使用的命令是( )。
A: ALTER TABLE 职工 DROP 职称
B: ALTER 职工 DROP 职称
C: DROP TABLE 职称
D: DROP 职称
A: ALTER TABLE 职工 DROP 职称
B: ALTER 职工 DROP 职称
C: DROP TABLE 职称
D: DROP 职称
举一反三
- 将student表中class字段删除的命令是()。 A: DROPTABLEstudentclass B: ALTER TABLE student class C: ALTER TABLE student DROP class D: DROP TABLE student ALTER class
- 以下哪条命令用于删除一个约束()。 A: Alter TABLE MODIFY CONSTRAINT B: Drop CONSTRAINT C: Alter TABLE Drop CONSTRAINT D: Alter CONSTRAINT Drop
- 删除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;
- 加入需要给stu表删除一个字段age,下列哪个正确 A: alter table stu drop age; B: drop table age C: drop table drop age;
- 删除表使用的命令是() A: delete table B: alter table C: drop table D: trancat table