... and they sometime interfere with normal operations - requiring special flag settings, or the inability to do INSERTs into VIEWs (even with full column lists, and thus need INSTEAD OF TRIGGERs) and so on.
You might be better off using a VIEW instead:
Create Table tbl
(
a int,
b int
)
CREATE VIEW V_tbl
AS
SELECT a, b,
a + b AS c
FROM tbl
Kristen