How can I add a computed column to a table that already exists?
This can be easily achieved by using Alter keyword,
Let’s have look:
For example, we want to add GDP to the Table name as Nation:
alter table Nationadd [GDP] as (**COLUMN-SQL**)
alter table Nation
add [GDP] as (**COLUMN-SQL**)