用ALTER TABLE语句,删除“student”表中的 “stu”字段
举一反三
- 将student表中class字段删除的命令是()。 A: DROPTABLEstudentclass B: ALTER TABLE student class C: ALTER TABLE student DROP class D: DROP TABLE student ALTER class
- 将student表的名称改为stu,命令为:alter table student to 。或者使用student stu
- 删除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;
- 下列关于ALTER TABLE语句叙述正确的是( )。 A: ALTER TABLE语句可以添加字段 B: ALTER TABLE语句可以删除字段 C: ALTER TABLE语句可以修改字段名称 D: ALTER TABLE语句可以修改字段数据类型
- 加入需要给stu表删除一个字段age,下列哪个正确 A: alter table stu drop age; B: drop table age C: drop table drop age;