【判断题】DROP INDEX语句很适合删除通过定义PRIMARY KEY和UNIQUE约束创建的索引
A.Y.是
B.N.否
第1题:
根据SQL标准,要创建唯一索引该使用下面哪种语句?()
A CREATE UNIQUE INDEX
B CREATE CLUSTER INDEX
C CREATE ONLY INDEX
D CREATE PRIMARY INDEX
第2题:
SQL中DROP INDEX语句的作用是( )。
A.建立索引
B.修改索引
C.删除索引
D.更新索引
第3题:
SQL语言中实现候选码约束的语句是(24)。
A.用Candidate Key指定
B.用Primary Key指定
C.用UNIQUE NOT NULL约束指定
D.用UNIQUE约束指定
第4题:
下列SQL语言的定义语句组中,哪一(些)组包含了不正确的定义语句?
Ⅰ.CREATE TABLE… CREATE VIEW… CREATE INDEX…
Ⅱ.DROP TABLE… DROP VIEW… DROP INDEX…
Ⅲ.ALTER TABLE… ALTER VIEW… ALTER INDEX…
A.只有Ⅰ
B.Ⅰ和Ⅱ
C.只有Ⅲ
D.Ⅱ和Ⅲ
第5题:
以下关于索引的哪个说法是对的()
第6题:
写出约束的中文名,PRIMARY KEY约束被称为()约束,UNIQUE约束被称为()约束,CHECK约束被称为()约束。
第7题:
删除索引的T-SQL语句是()。
第8题:
SQL SERVER数据库中,UNIQUE约束与PRIMARY KEY约束之间的区别是()
第9题:
Which two statements are true about constraints? ()
第10题:
The PRIMARY KEY is created along with a new index.
The PRIMARY KEY is created and it would use an existing unique index.
The PRIMARY KEY would be created in a disabled state because it is using an existing index.
The statement produces an error because the USING clause is permitted only in the CREATE TABLE command.
第11题:
The UNIQUE constraint does not permit a null value for the column.
A UNIQUE index gets created for columns with PRIMARY KEY and UNIQUE constraints.
The PRIMARY KEY and FOREIGN KEY constraints create a UNIQUE index.
The NOT NULL constraint ensures that null values are not permitted for the column.
第12题:
ALTER TABLE教师表ALTER职称DROP DEFAULT
ALTER TABLE教师表ALTER职称DELETE DEFAULT
ALTER TABLE教师表DROP职称DEFAULT
ALTER TABLE教师表DROP职称
第13题:
SQL中的DROP,INDEX语句的作用是
A.删除索引
B.建立索引
C.更新索引
D.修改索引
第14题:
在SQL在CREATE TABLE命令中用于定义满足实体完整性的主索引的短语是 A) DEFAULT B) UNIQUE C)CHECK D) PRIMARY KEY
第15题:
删除索引的T-SQL语句是()。
A.drop index
B.create index
C.sp_help index
D.update index
第16题:
应使用哪条语句删除“雇员”表的“姓氏”列上的“姓氏_IDX”索引?()
第17题:
要删除mytable表中的myindex索引,可以使用()语句。
第18题:
SQL语句删除索引的语句是()
第19题:
要删除视图myview,可以使用()语句。
第20题:
Which two statements are true about the primary key constraint in a table? ()
第21题:
The InnoDB engine has a feature known as clustered indexes. Which three statements are true about clustered indexes as used in InnoDB?()
第22题:
UNIQUE约束要求数据库表中至少存在一行数据,因此必须在创建数据库表之后才能创建,而PRIMARY KEY约束无此限制
UNIQUE约束允许存在空值,而PRIMARY KEY约束不允许存在空值
创建UNIQUE约束之后,该数据行允许被更改,而PRIMARY KEY约束的数据行,不允许更改
UNIQUE约束列不能创建外键,而PRIMAR YKEY约束列可以创建外键引用
第23题:
It is not possible to disable the primary key constraint.
It is possible to have more than one primary key constraint in a single table.
The primary key constraint can be referred by only one foreign key constraint.
The primary key constraint can be imposed by combining more than one column.
The non-deferrable primary key constraint creates an unique index on the primary key column if it is not already indexed.
第24题:
对
错