itgle.com
参考答案和解析
drop index不能删除非聚焦索引
更多“【判断题】DROP INDEX语句很适合删除通过定义PRIMARY KEY和UNIQUE约束创建的索引”相关问题
  • 第1题:

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

    A CREATE UNIQUE INDEX

    B CREATE CLUSTER INDEX

    C CREATE ONLY INDEX

    D CREATE PRIMARY INDEX


    参考答案A

  • 第2题:

    SQL中DROP INDEX语句的作用是( )。

    A.建立索引

    B.修改索引

    C.删除索引

    D.更新索引


    正确答案:C
    解析:建立索引的语句是CREATEINDEX,删除索引的语句是DROPINDEX,索引一旦建立,系统会自动使用、维护、修改和更新索引,不需要用户干预。

  • 第3题:

    SQL语言中实现候选码约束的语句是(24)。

    A.用Candidate Key指定

    B.用Primary Key指定

    C.用UNIQUE NOT NULL约束指定

    D.用UNIQUE约束指定


    正确答案:C
    解析:标准SQL定义了主码、外码约束,并没有直接定义候选码,候选码取值不能为空和不取重复值的约束可以通过UNIQUENOTNULL来实现。

  • 第4题:

    下列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的定义方式。

  • 第5题:

    以下关于索引的哪个说法是对的()

    • A、创建PRIMARY KEY约束条件时,会自动创建一个索引
    • B、创建PRIMARY KEY约束条件时,必须由数据库管理员创建索引
    • C、从不为唯一约束条件创建索引
    • D、创建PRIMARY KEY约束条件以前,不能创建索引

    正确答案:A

  • 第6题:

    写出约束的中文名,PRIMARY KEY约束被称为()约束,UNIQUE约束被称为()约束,CHECK约束被称为()约束。


    正确答案:主键;唯一;检查

  • 第7题:

    删除索引的T-SQL语句是()。

    • A、drop index
    • B、create index
    • C、sp_help index
    • D、update index

    正确答案:A

  • 第8题:

    SQL SERVER数据库中,UNIQUE约束与PRIMARY KEY约束之间的区别是()

    • A、UNIQUE约束要求数据库表中至少存在一行数据,因此必须在创建数据库表之后才能创建,而PRIMARY KEY约束无此限制
    • B、UNIQUE约束允许存在空值,而PRIMARY KEY约束不允许存在空值
    • C、创建UNIQUE约束之后,该数据行允许被更改,而PRIMARY KEY约束的数据行,不允许更改
    • D、UNIQUE约束列不能创建外键,而PRIMAR YKEY约束列可以创建外键引用

    正确答案:B

  • 第9题:

    Which two statements are true about constraints? ()

    • A、The UNIQUE constraint does not permit a null value for the column.
    • B、A UNIQUE index gets created for columns with PRIMARY KEY and UNIQUE constraints.
    • C、The PRIMARY KEY and FOREIGN KEY constraints create a UNIQUE index.
    • D、The NOT NULL constraint ensures that null values are not permitted for the column.

    正确答案:A,D

  • 第10题:

    单选题
    View the Exhibit and examine the structure of the EMP table. You executed the following command to add a primary key to the EMP table:   ALTER TABLE emp   ADD CONSTRAINT emp_id_pk  PRIMARY KEY (emp_id)   USING INDEX emp_id_idx;   Which statement is true regarding the effect of the command?()
    A

     The PRIMARY KEY is created along with a new index.

    B

     The PRIMARY KEY is created and it would use an existing unique index.

    C

     The PRIMARY KEY would be created in a disabled state because it is using an existing index.

    D

     The statement produces an error because the USING clause is permitted only in the CREATE TABLE command.


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

  • 第11题:

    多选题
    Which two statements are true about constraints? ()
    A

    The UNIQUE constraint does not permit a null value for the column.

    B

    A UNIQUE index gets created for columns with PRIMARY KEY and UNIQUE constraints.

    C

    The PRIMARY KEY and FOREIGN KEY constraints create a UNIQUE index.

    D

    The NOT NULL constraint ensures that null values are not permitted for the column.


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

  • 第12题:

    单选题
    使用下列SQL语句创建教师表:CREATE TABLE教师表(教师编号I PRIMARY KEY,姓名C(8)NOT NULL,职称C(10)DEFAULT’讲师’)如果要删除“职称”字段的DEFAULT约束,正确的SQL语句是(  )。
    A

    ALTER TABLE教师表ALTER职称DROP DEFAULT

    B

    ALTER TABLE教师表ALTER职称DELETE DEFAULT

    C

    ALTER TABLE教师表DROP职称DEFAULT

    D

    ALTER TABLE教师表DROP职称


    正确答案: C
    解析:
    删除约束命令格式为:ALTER TABLE<表名>ALTER[COLUMN]<字段名1>[DROP[COLUMN]<字段名>][DROP PRIMARY KEY TAG<索引名1>[DROP UNIQUE TAG<索引名2>][DROP CHECK]。

  • 第13题:

    SQL中的DROP,INDEX语句的作用是

    A.删除索引

    B.建立索引

    C.更新索引

    D.修改索引


    正确答案:A
    解析:DROPINDEX子句用于删除指定的索引,建立索引是CREATEINDEX。没有更新和修改索引。

  • 第14题:

    在SQL在CREATE TABLE命令中用于定义满足实体完整性的主索引的短语是 A) DEFAULT B) UNIQUE C)CHECK D) PRIMARY KEY


    正确答案:D
    选项A是用于定义默认值;选项B是用于建立候选索引,但不是惟一索引;选项C是用于指定字段的有效性规则;选项D是用于建立主索引.故选项D为正确答案。

  • 第15题:

    删除索引的T-SQL语句是()。

    A.drop index

    B.create index

    C.sp_help index

    D.update index


    本题答案:A

  • 第16题:

    应使用哪条语句删除“雇员”表的“姓氏”列上的“姓氏_IDX”索引?()

    • A、DROP INDEX姓氏_idx;
    • B、DROP INDEX姓氏_idx(姓氏);
    • C、DROP INDEX姓氏_idx(雇员.姓氏);
    • D、ALTERTABLE雇员DROP INDEX姓氏_idx;

    正确答案:A

  • 第17题:

    要删除mytable表中的myindex索引,可以使用()语句。

    • A、DROP myindex
    • B、DROP mytable.myindex
    • C、DROP INDEX myindex
    • D、DROP INDEX mytable.myindex

    正确答案:D

  • 第18题:

    SQL语句删除索引的语句是()

    • A、DROP TABLE 
    • B、DROP VIEW 
    • C、DROP INDEX 
    • D、ALTER TABLE

    正确答案:C

  • 第19题:

    要删除视图myview,可以使用()语句。

    • A、DROP myview
    • B、DROP TABLE myview
    • C、DROP INDEX myview
    • D、DROP VIEW myview

    正确答案:D

  • 第20题:

    Which two statements are true about the primary key constraint in a table? ()

    • A、It is not possible to disable the primary key constraint.
    • B、It is possible to have more than one primary key constraint in a single table.
    • C、The primary key constraint can be referred by only one foreign key constraint.
    • D、The primary key constraint can be imposed by combining more than one column.
    • E、The non-deferrable primary key constraint creates an unique index on the primary key column if it is not already indexed.

    正确答案:D,E

  • 第21题:

    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

  • 第22题:

    单选题
    SQL SERVER数据库中,UNIQUE约束与PRIMARY KEY约束之间的区别是()
    A

    UNIQUE约束要求数据库表中至少存在一行数据,因此必须在创建数据库表之后才能创建,而PRIMARY KEY约束无此限制

    B

    UNIQUE约束允许存在空值,而PRIMARY KEY约束不允许存在空值

    C

    创建UNIQUE约束之后,该数据行允许被更改,而PRIMARY KEY约束的数据行,不允许更改

    D

    UNIQUE约束列不能创建外键,而PRIMAR YKEY约束列可以创建外键引用


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

  • 第23题:

    多选题
    Which two statements are true about the primary key constraint in a table? ()
    A

    It is not possible to disable the primary key constraint.

    B

    It is possible to have more than one primary key constraint in a single table.

    C

    The primary key constraint can be referred by only one foreign key constraint.

    D

    The primary key constraint can be imposed by combining more than one column.

    E

    The non-deferrable primary key constraint creates an unique index on the primary key column if it is not already indexed.


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

  • 第24题:

    判断题
    PRIMARY KEY约束和NULL约束不能同时定义在相同的列上。
    A

    B


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