前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >【2019年8月版本】OCP 071认证考试最新版本的考试原题-第6题

【2019年8月版本】OCP 071认证考试最新版本的考试原题-第6题

原创
作者头像
用户5892232
修改2019-10-16 11:01:47
4290
修改2019-10-16 11:01:47
举报

choose three

Which three statements are true about indexes and their administration in an Orade database?

A) An INVISIBLE index is not maintained when Data Manipulation Language (DML) is performed on its underlying table.

B) An index can be created as part of a CREATE TABLE statement.

C) A DROP INDEX statement always prevents updates to the table during the drop opeaton

D) A UNIQUE and non-unique index can be ceated on the same table colunn

E) A descending index is a type of funcion-based index

F) If a query filters on an indexed column then it will always be used during execution of the query

Answer:BCE

(解析:建表的时候就可以创建索引;做 drop index 时会锁表;

创建降序排列的索引:

create index idx_emp_ename on emp(ename DESC) ;

创建了索引,在查询的时候不一定都会用到,涉及的因素很多。

)

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档