Hi,
While creating a table itself you can create the computed field. Suppose you want to create a column as sum of two already delcared columns, you can create as follows
create table test
(a int,
b int,
c as a+b)
Here the column C is stored the date vartually in the table , it cannot...