views:

51

answers:

1

I created a computed column of type varbinary and referenced a varchar(max) field. Now, how do i use or invoke it?

thanks

+1  A: 
SELECT
    computedcolumn
FROM
    table

For indexing, look for "computed columns" in the CREATE INDEX statment. There are rules such as deterministic, and no longer than 900 bytes etc.

Is this what you wanted?

gbn