Thursday 5 October 2017

Create an Index and dropping if it Exist

CREATE NONCLUSTERED INDEX  Index_Name
ON dbo.TableName(Column_Name)
WITH (DROP_EXISTING = ON);

No comments:

Post a Comment