下面的一条SQL语句是用来创建一个索引的,试解释其作用。CREATE UNIQUE CLUSTERED INDEX index1ON table1(column1,col
SQL仅接受以下``CREATE INDEX选项用于解析目的,以帮助将现有SQL代码转换为 SQL。 这些选项不提供任何实际的功能。 CLUSTERED | NONCLUSTERED owner.catalog. ASC | DESC 下面的例子展示了这些no-op关键字的位置: CREATE UNIQUE CLUSTERED INDEX index-name ON TABLE owner.catalog.schema.table (field1 ASC, field2...
SQL仅接受以下``CREATE INDEX选项用于解析目的,以帮助将现有SQL代码转换为 SQL。 这些选项不提供任何实际的功能。 CLUSTERED | NONCLUSTERED owner.catalog. ASC | DESC 1. 下面的例子展示了这些no-op关键字的位置: CREATE UNIQUE CLUSTERED INDEX index-name ON TABLE owner.catalog.schema.table (field1 ASC, fi...
SQL仅接受以下``CREATE INDEX选项用于解析目的,以帮助将现有SQL代码转换为 SQL。 这些选项不提供任何实际的功能。 CLUSTERED|NONCLUSTEREDowner.catalog.ASC|DESC 下面的例子展示了这些no-op关键字的位置: CREATEUNIQUECLUSTEREDINDEXindex-nameONTABLEowner.catalog.schema.table(field1ASC,field2DESC) 索引名称 索引的名...
CREATEUNIQUECLUSTEREDINDEXindex-nameONTABLEowner.catalog.schema.table(field1ASC,field2DESC) 索引名称 索引的名称在给定的表中必须是唯一的。 索引名称遵循标识符约定,受以下限制。 默认情况下,索引名是简单的标识符; 索引名称可以是分隔的标识符。 索引名不能超过128个字符。 索引名不区分大小写。
SQL SERVER中用CREATE INDEX 命令创建索引 CREATE INDEX 既可以创建一个可改变表的物理顺序的簇索引,也可以创建提高查询性能的非簇索引。其语法如下: CREATE [UNIQUE] [CLUSTERED | NONCLUSTERED] INDEX index_name ON {table | view } column [ ASC | DESC ] [,...n])...
SQL语句:CREATEUNIQUECLUSTEREDINDEXSSlONSTU—DENTl(XH)的作用是()A.为表STUDENT1创建非唯一性聚集索引SSlB.为表STUDENTl创建唯一性聚集索引SSlC.为表STUDENT1创建唯一性非聚集索引SSlD.以上说法都不对的答案是什么.用刷刷题APP,拍照搜索答疑.刷刷题(shuashuati.com)是专
百度试题 结果1 题目SQL中创建唯一索引应使用( ) A. CREATE index B. CREATE unique index C. CREATE clustered index D. CREATE uncluster index 相关知识点: 试题来源: 解析 B 反馈 收藏
Unique index Filtered index With included columns Delete Modify Move to a different filegroup Computed Columns SORT_IN_TEMPDB Disable Enable Rename Set Options Tune nonclustered indexes with missing index suggestions Disk space index DDL operations ...
UNIQUE Creates a unique index on a table or view. A unique index is one in which no two rows are permitted to have the same index key value. A clustered index on a view must be unique. The SQL Server 2005 Database Engine does not allow creating a unique index on columns that already...