0

I have stored computed column defined as:

ALTER TABLE computed_column AS INT col1+col2 STORED;

Is there way to change the calculation to col1+col3 without first dropping the computed_column?

Saqib Ali
  • 3,953
  • 10
  • 55
  • 100

1 Answers1

1

No, unfortunately there is no way to change the expression of a computed column at this time.

Richard C
  • 29
  • 2