Recalculation of computed columns

Values of computed columns are automatically maintained by the database server as rows are inserted and updated. Most applications should never need to update or insert computed column values directly.

Computed columns are recalculated under the following circumstances:

  • Any column is deleted, added, or renamed.

  • The table is renamed.

  • The table is changed by an ALTER TABLE statement that modifies any column's data type or COMPUTE clause.

  • A row is inserted.

  • A row is updated.

Computed columns are not recalculated under the following circumstances:

  • The computed column is queried.

  • The computed column depends on the values of other rows (using a subquery or user-defined function), and these rows are changed.