もちろん! ALTER TABLE...
を使用するだけです。
構文。
例
ALTER TABLE YourTable
ADD Foo INT NULL /*Adds a new int column existing rows will be
given a NULL value for the new column*/
または
ALTER TABLE YourTable
ADD Bar INT NOT NULL DEFAULT(0) /*Adds a new int column existing rows will
be given the value zero*/
SQL Server 2008では、最初の変更はメタデータのみの変更です。 2番目はすべての行を更新します。
SQL Server 2012+ Enterpriseエディションでは、2番目はメタデータも変更されるだけです 。