Create table FavoriteDish
(
FavID int identity (1,1) primary key not null,
DishID int references Dishes(DishID) not null ,
CelebrityName nvarchar(100) nonclustered not null
)
这导致
关键字'nonclustered'附近的语法不正确。
我参考了创建表语法的MSDN帮助。我不确定这里有什么不对。
答案 0 :(得分:19)
在线图书中的帮助确实提到了关键字CLUSTERED,但它仅与UNIQUE或PRIMARY KEY约束相关。这两个约束都会创建一个索引,您可以指定该索引是集群还是非集群。
您不能使用该语法来创建标准的非聚集索引。
Create table FavoriteDish
(
FavID int identity (1,1) primary key not null,
DishID int references Dishes(DishID) not null ,
CelebrityName nvarchar(100) constraint ux_CelebrityName unique NONCLUSTERED not null
)
答案 1 :(得分:14)
删除此非聚集关键字并使用CREATE INDEX语句为此表添加索引,此文档可以在以下位置读取:
http://msdn.microsoft.com/en-us/library/ms188783.aspx
语法在这里:
CREATE [ UNIQUE ] [ CLUSTERED | NONCLUSTERED ] INDEX index_name
ON <object> ( column [ ASC | DESC ] [ ,...n ] )
[ INCLUDE ( column_name [ ,...n ] ) ]
[ WHERE <filter_predicate> ]
[ WITH ( <relational_index_option> [ ,...n ] ) ]
[ ON { partition_scheme_name ( column_name )
| filegroup_name
| default
}
]
[ FILESTREAM_ON { filestream_filegroup_name | partition_scheme_name | "NULL" } ]
[ ; ]
代码在这里:
CREATE NONCLUSTERED INDEX index_clustered ON FavoriteDish(CelebrityName asc)