document.write("
--non clustered and unique index
Create Unique Nonclustered Index U_refCode on CustomerDetails(
refCode desc
)
CreateUniqueIndex.sql - Snippet hosted by \"Cacher\"
--non clustered and non unique index
Create Nonclustered Index NU_sort on CustomerDetails(
sort desc,
refCode asc
)
CreateIndex.sql - Snippet hosted by \"Cacher\"
");