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
)
此結果Incorrect syntax near the keyword 'nonclustered'
。 我引用了MSDN對create table語法的幫助。我不知道這裏有什麼問題。如何在創建表中創建非聚集索引?
的[創建CREATE TABLE語句中使用SQL Server非聚簇非唯一索引(可能的複製http://stackoverflow.com/questions/6193293/create-a-nonclustered-non-unique-index -within-the-create-table-statement-with-sq) – AaronLS 2016-06-01 22:56:27
@AaronLS首先詢問這個特定問題的含義是否早於您指向的問題。這意味着你指向的那個可以被稱爲這個的重複,而不是反之亦然 – 2017-04-13 09:58:03