If I include a computed column in a table, does it place a perfomance burden on it?
For example, if I have a table defined as follows:
CREATE TABLE users(
givenname …,
familyname …,
fullname AS givenname+' '+familyname
);
… does it recalculate every time I SELECT from the query?
Would it help if the computed column is PERSISTED?
