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
)
This results in
Incorrect syntax near the keyword ‘nonclustered’.
I referred to the MSDN help for the create table syntax. I am not sure whats wrong here.
The help in books online does in fact mention the keyword CLUSTERED, but it is only relevant for UNIQUE or PRIMARY KEY constraints. Both these constraints create an index, and you can specify if that index is to be clustered or non-clustered.
You cannot use that syntax to create a standard non clustered index.