在T-SQL中,创建一个索引的命令是_________。
A: SET INDEX
B: CREATEINDEX
C: ALTER INDEX
D: DECLAREINDEX
A: SET INDEX
B: CREATEINDEX
C: ALTER INDEX
D: DECLAREINDEX
举一反三
- 在SQL中,建立索引的命令是( )。 A: ALTER INDEX B: SET ORDER TO C: SET INDEX TO D: INDEX ON
- 下列SQL语句能创建索引的是? A: ALTER TABLE 索引名INDEX表名 (字段名) B: ALTER TABLE 表名 INDEX 索引名 (字段名) C: ALTER TABLE 表名 ADD INDEX (字段名) D: ALTER TABLE 表名 INDEX 索引名
- 除了create index命令外,在已有表中创建普通索引的命令是? A: create table ... add index ... B: update table ... add index ... C: add index ... on table D: alter table ... add index ...
- 使用T-SQL语句删除索引的关键字是()。 A: CREATE TABLE B: DELETE INDEX C: DROP INDEX D: ALTER INDEX
- 下列SQL语句能创建索引的是? A: CREATE INDEX 索引名 AS 表名 (字段名) B: CREATE INDEX 索引名 ON 表名 (字段名) C: CREATE INDEX 表名 SET 索引名 AS 表名 (字段名) D: CREATE INDEX 表名 SET 索引名 ON 表名 (字段名)