Hi
How To Add a New Column to an Existing Table with "ALTER TABLE ... ADD" in SQL Server ?
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Satyapriya NayakPosted Jul 4, 2012, 11:43 AM
ALTER TABLE table_name
ADD column_name datatype
Please refer the below link
http://www.w3schools.com/sql/sql_alter.asp
Thanks