Můžete vytvořit trvalý vypočítaný sloupec a poté jej indexovat, viz Vytváření indexů na Computed Sloupce
alter table add newcolumn as cast(oldcolumn as varchar(24)) persisted;
create index table_newcolumn on table (newcolumn);
Můžete vytvořit trvalý vypočítaný sloupec a poté jej indexovat, viz Vytváření indexů na Computed Sloupce
alter table add newcolumn as cast(oldcolumn as varchar(24)) persisted;
create index table_newcolumn on table (newcolumn);