DROP TABLE
ALTER TABLE
RESIZE
COALESCE
第1题:
下列说法正确的是()
A.alter table user drop column sex;
B.alter table user add sex varchar(20);
C.alter table user drop sex;
D.alter table user modify id int primary key;
第2题:
根据SQL标准,删除表student中对字段sno的唯一性约束,应该使用下面哪条语句? ()
A drop sno from table student
B alter table student drop sno
C alter table student drop unique(sno)
D alter table student drop sno unique
第3题:
使用SQL语句将教师表中的照片字段删除,以下正确的是()。
A.Alter table教师Delete照片
B.Alter table教师Drop照片
C.Alter table教师AND Drop照片
D.Alter table教师AND Delete照片
第4题:
In your test database, you have created the ORDERS table as an index/x7forganized table (IOT). To facilitate faster querying, you have created a mapping table and a bitmap index on the ORDER_FILLED column. You observe that the query performance degrades when users perform a large volume of transactions. While investigating the reason, you find that the mapping table segment is fragmented, leading to poor performance. Which option would you use to defragment the mapping table without affecting the original table data?()
第5题:
A. ALTER TABLE SPLIT PARTITION
B. ALTER TABLE MERGE PARTITION
C. ALTER TABLE TRUNCATE PARTITION
D. ALTER TABLE ADD PARTITION
E. ALTER TABLE DROP PARTITION
F. ALTER TABLE MOVE PARTITION
第6题:
把表中"单价"字段的有效性规则取消,使用SQL语句
A.ALTER TABLE ORDER ALTER 单价 DROP CHECK
B.ALTER TABLE ORDER DELETE 单价 DROP CHECK
C.ALTER TABLE ORDER DELETE CHECK 单价
D.ALTER TABLE ORDER DROP CHECK 单价
第7题:
把表中“学历”字段的有效性规则取消,正确的SQL语句是( )。
A.ALTER TABLE学生ALTER学历DROP CHECK
B.ALTER TABLE学生DELETE学历DROP CHECK
C.ALTER TABLE学生DELETE CHECK学历
D.ALTER TABLE学生DROP CHECK学历
第8题:
以下能够删除一列的是( )
A.alter table emp remove addcolumn
B.alter table emp drop column addcolumn
C.alter table emp delete column addcolumn
D.alter table emp delete addcolumn
第9题:
删除PRIMARYKEY约束条件及其所有依赖约束条件的语法是什么()
第10题:
Which two partitioned table maintenance operations support asynchronous Global Index Maintenance inOracle database 12c?()