In SQL Server, a computed column is a virtual column that uses an expression to calculate its value.
A computed column will typically use data from other columns in its calculation. If data in any of those columns is updated, the computed column will automatically reflect the update in its calculation.
Continue reading