Oczywiście! Po prostu użyj ALTER TABLE...
składnia.
Przykład
ALTER TABLE YourTable
ADD Foo INT NULL /*Adds a new int column existing rows will be
given a NULL value for the new column*/
Lub
ALTER TABLE YourTable
ADD Bar INT NOT NULL DEFAULT(0) /*Adds a new int column existing rows will
be given the value zero*/
W SQL Server 2008 pierwsza z nich to tylko zmiana metadanych. Drugi zaktualizuje wszystkie wiersze.
W SQL Server 2012+ Enterprise Edition druga to metadane też się zmieniają .