SQL Server Multiple Attribute Indexing -
can create index on multiple attributes in sql server, i've been searching quite while , have found no information this. in advance!
yes, can.
when creating index list columns want index.
this example creates index on 2 columns of table:
create table #peter (a int, b int, c varchar(500)); create index idx_peter_a_b on #peter(a, b);
you should test , validate such index useful queries.
Comments
Post a Comment