SQL - DataTypes - Computed

A computed column is a column, which is not holding data, but returns a value based on a calculation.

A computed column can be added to a table like this

1
2
3
alter table employee
add email as (ntUserName + '@sacsewer.com')
Go