Puede crear una columna calculada persistente y luego indexarla; consulte Creación de índices en columnas
alter table add newcolumn as cast(oldcolumn as varchar(24)) persisted;
create index table_newcolumn on table (newcolumn);
Puede crear una columna calculada persistente y luego indexarla; consulte Creación de índices en columnas
alter table add newcolumn as cast(oldcolumn as varchar(24)) persisted;
create index table_newcolumn on table (newcolumn);