Sie können eine persistente berechnete Spalte erstellen und sie dann indizieren, siehe Creating Indexes on Computed Spalten
alter table add newcolumn as cast(oldcolumn as varchar(24)) persisted;
create index table_newcolumn on table (newcolumn);
Sie können eine persistente berechnete Spalte erstellen und sie dann indizieren, siehe Creating Indexes on Computed Spalten
alter table add newcolumn as cast(oldcolumn as varchar(24)) persisted;
create index table_newcolumn on table (newcolumn);