The InnoDB engine has a feature known as clustered indexes.Which three statements are true about clustered indexes as used in InnoDB?()A.A primary key must exist for creation of a clustered indexB.A clustered index allows fulltext searching within InnoDBC

题目
The InnoDB engine has a feature known as clustered indexes.Which three statements are true about clustered indexes as used in InnoDB?()

A.A primary key must exist for creation of a clustered index

B.A clustered index allows fulltext searching within InnoDB

C.The first unique index is always used as a clustered index and not a primary key

D.A clustered index provides direct access to a page containing row data

E.If no indexes exist, a hidden clustered index is generated based on row IDs

F.A primary key is used as a clustered index

G.A clustered index is a grouping of indexes from different tables into a global index for faster searching


相似考题
更多“The InnoDB engine has a feature known as clustered indexes.Which three statements are true about clustered indexes as used in InnoDB?() ”相关问题
  • 第1题:

    【单选题】要修改数据表tb_student的存储引擎为InnoDB,可以使用下面的()语句

    A.ALTER TABLE tb_student DEFAULT CHARSET=InnoDB;

    B.ALTER TABLE tb_student ENGINE=InnoDB;

    C.ALTER TABLE tb_student AUTO_INCREMENT=InnoDB;

    D.Alter TABLE tb_student ADD CONSTRAINT mrprimary PRIMARY KEY (id);


    ALTER TABLE tb_student ENGINE=InnoDB;

  • 第2题:

    关于innoDB锁,下面描述正确的是

    A.InnoDB通过对索引项加锁实现行锁.

    B.InnoDB锁能够避免并发更新造成更新丢失.

    C.InnoDB中一个正在执行的事务中更新了多行记录,已经更新了的行上锁会自动释放.

    D.InnoDB中select for update操作和update操作所加的锁不同.


    InnoDB通过对索引项加锁实现行锁.;InnoDB锁能够避免并发更新造成更新丢失.

  • 第3题:

    关于InnoDB存储引擎,下面说法错误的是

    A.InnoDB表为索引组织表,数据是以主键排序的,如果表中没有主键,那么表是堆表

    B.InnoDB表数据页默认大小和Oracle默认大小一样,都是8K

    C.InnoDB数据修改前一定会写事务日志,事务提交时会将数据以及日志刷到磁盘

    D.InnoDB锁包含记录锁以及间隙锁,间隙锁是指锁住索引区间,避免插入


    MySQL数据库的默认存储引擎一直都是InnoDB

  • 第4题:

    1、Mysql 的存储引擎,myisam和innodb的区别。


    MyISAM不支持事务

  • 第5题:

    关于MyISAM和InnoDB引擎的表,下列说法正确的是

    A.MyISAM表数据更改会锁住整张表

    B.如果一个事务同时操作了InnoDB表和MyISAM表,那么不管是否提交,MyISAM表中的数据变化都能被别的连接看到

    C.InnoDB表数据更改只可能锁住要更改的行

    D.如果一个事务同时操作了InnoDB表和MyISAM表,那么对MyISAM的操作也可以被回滚


    MyISAM表数据更改会锁住整张表;如果一个事务同时操作了InnoDB表和MyISAM表,那么不管是否提交,MyISAM表中的数据变化都能被别的连接看到

  • 第6题:

    关于InnoDB存储引擎,下面说法正确的是:

    A.InnoDB存储引擎中的update操作,一定是先写事务日志,再修改数据内容.

    B.InnoDB存储引擎可以通过配置,牺牲持久化安全,提高性能.

    C.InnoDB存储引擎不会出现脏读.

    D.InnoDB存储引擎持久化的时候,每个commit必须将日志先刷到磁盘.


    InnoDB存储引擎中的update操作,一定是先写事务日志,再修改数据内容.;InnoDB存储引擎可以通过配置,牺牲持久化安全,提高性能.