OCP 11g试题解析:1Z0-051-046题
最新学讯:近期OCP认证正在报名中,因考试人员较多请尽快报名获取最近考试时间,报名费用请联系在线老师,甲骨文官方认证,报名从速!
我要咨询OCP 11g试题解析:1Z0-051-046题,完整题库请点击这里联系老师咨询了解
46. Which statements are correct regarding indexes? (Choose all that apply.)
A. When a table is dropped, the corresponding indexes are automatically dropped.
B. A FOREIGN KEY constraint on a column in a table automatically creates a nonunique index.
C. A nondeferrable PRIMARY KEY or UNIQUE KEY constraint in a table automatically creates a unique
index.
D. For each data manipulation language (DML) operation performed, the corresponding indexes are
automatically updated.
Answer: ACD
试题解析:
A正确,在删除表时,会删除相应的索引。
B错误,外键不能够自动创建索引,只有主键约束和唯一性约束才能自动创建唯一的索引。
C正确,在表定义中定义了PRIMARY KEY 或UNIQUE 约束条件,则会自动创建一个唯一的索引。
D正确,在具有索引的表上提交每项DML 操作后,都意味着必须更新相应的索引。