itgle.com

已知关系R(A,B,C),有定义索引的语句:create unique clustered index idxl on R(B)。下列关于idxl的说法,正确的是( )。A.idxl既是唯一索引,也是聚集索引B.idxl既是主索引,也是聚集索引C.idxl既是唯一索引,也是主索引D.idxl既不是主索引,也不是聚集索引

题目
已知关系R(A,B,C),有定义索引的语句:create unique clustered index idxl on R(B)。下列关于idxl的说法,正确的是( )。

A.idxl既是唯一索引,也是聚集索引

B.idxl既是主索引,也是聚集索引

C.idxl既是唯一索引,也是主索引

D.idxl既不是主索引,也不是聚集索引


相似考题
更多“已知关系R(A,B,C),有定义索引的语句:create unique clustered index idxl on R(B)。下列关于idxl的说法,正确的是( )。 ”相关问题
  • 第1题:

    下列SQL语句中,包含了不正确定义语句的组是( )。

    Ⅰ. CREATE TABLE CREATE VIEW CREATE INDEX

    Ⅱ. DROP TABLE DROP VIEW DROP INDEX

    Ⅲ. ALTER TABLE ALTER VIEW ALTER INDEX

    A)只有I

    B)只有Ⅱ

    C)只有Ⅲ

    D)Ⅰ和Ⅱ


    正确答案:C
    关系数据库由模式、外模式和内模式组成,即关系数据库的基本对象是表、视图和索引。因此,SQL的数据定义功能包括定义表、定义视图和定义索引,如下表所示。由于视图是基于基本表的虚表,索引是依附于基本表的,因此SQL通常不提供修改视图定义和修改索引定义的操作。
       

  • 第2题:

    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


    参考答案:D, E, F

  • 第3题:

    在SQL Server 2000的某用户数据库中,设有T表,现要在T表的c1列和c2列上建立一个复合唯一聚集索引,其中c1列值重复率为20%,c2列为10%。请补全下列语句建立一个性能最优的索引:CREATE UNIQUE CLUSTERED INDEX Idx1 ON T(______)


    正确答案:C2
    C2

  • 第4题:

    下面所列条目中,( )不是标准的SQL语句。A.DELETE INDEX B.CREATE INDEXC.DELETE FROM D.CREATE UNIQUE CLUSTER INDEX


    正确答案:A
    删除索引的标准语句应为:DROP DELETE.

  • 第5题:

    在表S中对学号SN按升序建立名为SNINDEX的索引,正确的是______。

    A.CREATE INDEX SNINDEX WITH S(SN)

    B.CREATE UNIQUE INDEX SNINDEX ON S(SN)

    C.CREATE SNNIDEX ON S(SN)

    D.CREATE SNINDEX INDEX ON S(SN)


    正确答案:B
    解析:创建索引的基本格式:create index索引表> on 表名> (列名>asc|desc})
      题目中,UNIQUE说明此索引不允许有重复的键值,默认值是NONUNIQUE。

  • 第6题:

    下列SQL语言的定义语句组中,哪一(些)组包含了不正确的定义语句?

    Ⅰ.CREATE TABLE… CREATE VIEW… CREATE INDEX…

    Ⅱ.DROP TABLE… DROP VIEW… DROP INDEX…

    Ⅲ.ALTER TABLE… ALTER VIEW… ALTER INDEX…

    A.只有Ⅰ

    B.Ⅰ和Ⅱ

    C.只有Ⅲ

    D.Ⅱ和Ⅲ


    正确答案:C
    解析:定义语句ALTER只能定义ALTERTABLE,没有ALTERVIEW和ALTERINDEX的定义方式。

  • 第7题:

    使用CREATE INDEX语句建立的是()。

    • A、数据库
    • B、表
    • C、视图
    • D、索引

    正确答案:D

  • 第8题:

    SQL语言中建立惟一性索引的命令是()

    • A、CREATE INDEX索引名ON基本表名(属性名)
    • B、CREATE INDEX UNIQUE索引名ON基本表名(属性名)
    • C、CREATE UNIQUE INDEX索引名ON基本表名(属性名)
    • D、CREATE DISTINCT INDEX索引名ON基本表名(属性名)

    正确答案:C

  • 第9题:

    SQL中使用()语句创建索引。

    • A、CREATE PROC
    • B、CREATE VIEW
    • C、CREATE TABLE
    • D、CREATE INDEX

    正确答案:D

  • 第10题:

    “Create Unique Index AAA On学生表(学号)”将在学生表上创建名为AAA的()。

    • A、惟一索引
    • B、聚集索引
    • C、复合索引
    • D、惟一聚集索引

    正确答案:A

  • 第11题:

    多选题
    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


    正确答案: D,E,F
    解析: 暂无解析

  • 第12题:

    单选题
    使用CREATE INDEX语句建立的是()。
    A

    数据库

    B

    C

    视图

    D

    索引


    正确答案: B
    解析: 暂无解析

  • 第13题:

    根据SQL标准,要创建唯一索引该使用下面哪种语句?()

    A CREATE UNIQUE INDEX

    B CREATE CLUSTER INDEX

    C CREATE ONLY INDEX

    D CREATE PRIMARY INDEX


    参考答案A

  • 第14题:

    下列SQL的数据定义语句组中,哪一(些)组包含了不正确的数据定义语句?

    Ⅰ.CREATE TABLE… CREATE VIEW… CREATE INDEX…

    Ⅱ.DROP TABLE… DROP VIEW… DROP INDEX…

    Ⅲ.ALTER TABLE… ALTER VIEW… ALTER INDEX…

    A.仅Ⅰ

    B.仅Ⅱ

    C.仅Ⅲ

    D.都包含


    正确答案:C
    解析:由SQL中数据定义语句的格式可知,第二个语句错误。

  • 第15题:

    下列SQL的数据定义语句组中,哪一组是正确的?

    A.CREATE SCHEMA...,DROP SCHEMA…,ALTER SCHEMA…

    B.CREATE TABLE......,DROP TABLE....,ALTER TABLE....

    C.CREATE VIEW..:,DROP VIEW...,ALTER VIEW…

    D.CREATE INDEX...,DROP INDEX…,ALTER INDEX…


    正确答案:B

  • 第16题:

    下列SQL语言的定义语句组中,哪一(些)组包含了不正确的定义语句?

    I . CREATE TABLE...CREATE VIEW... CREATE INDEX...

    Ⅱ. DROP TABLE... DROP VIEW... DROP INDEX...

    Ⅲ. ALTER TABLE...ALTER VIEW...ALTER INDEX...


    正确答案:C
    关系数据库由模式、外模式和内模式组成,即关系数据库的基本对象是表、视图和索引。因此,SQL的数据定义功能包括定义表、定义视图和定义索引,如下表所示。由于视图是基于基本表的虚表,索引是依附于基本表的,因此SQL通常不提供修改视图定义和修改索引定义的操作。

  • 第17题:

    下列哪种方法不能用于创建索引?_______

    A.使用CREATE INDEX语句

    B.使用CREATE TABLE语句

    C.使用ALTER TABLE语句

    D.使用CREATE DATABASE语句


    参考答案:D

  • 第18题:

    在下列SQL语句中,( )包含了不正确的定义语句。

    Ⅰ、CREATE TABLE CREATE VIEW CREATE INDEX

    Ⅱ、DROP TABLE DROP VIEW DROP INDEX

    Ⅲ、ALTER TABLE ALTER VIEW ALTER INDEX

    A)Ⅰ和Ⅱ

    B)只有Ⅱ

    C)只有Ⅲ

    D)Ⅱ和Ⅲ


    正确答案:C

  • 第19题:

    创建索引的语法是什么()

    • A、CREATE INDEX索引名ON表名(列名)
    • B、CREATE INDEX ON表名(列名)
    • C、CREATE索引名INDEX ON表名.列名
    • D、CREATE OR REPLACE INDEX索引名ON表名(列名)

    正确答案:A

  • 第20题:

    用()命令可以建立唯一索引。

    • A、CREATE TABLE
    • B、CREATE CLUSTER
    • C、CREATE VIEW
    • D、CREATE UNIQUE INDEX

    正确答案:D

  • 第21题:

    在使用CREATEINDEX进行索引创建的说法中,以下哪些是正确的()

    • A、CLUSTERED表示聚集索引
    • B、NONCLUSTERED表示非聚集索引
    • C、DESC表示升序排序
    • D、UNIQUE表示创建唯一索引

    正确答案:A,B,D

  • 第22题:

    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

    正确答案:D,E,F

  • 第23题:

    单选题
    “Create Unique Index AAA On学生表(学号)”将在学生表上创建名为AAA的()。
    A

    惟一索引

    B

    聚集索引

    C

    复合索引

    D

    惟一聚集索引


    正确答案: A
    解析: 暂无解析