I created a computed column of type varbinary and referenced a varchar(max) field. Now, how do i use or invoke it?
thanks
I created a computed column of type varbinary and referenced a varchar(max) field. Now, how do i use or invoke it?
thanks
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?