After you create a table, you might want to change its structure by adding columns, adding record keys, or changing constraints. To change a table, you alter its definition.
(For details, search for "table" in SQL Enterprise Manager Help.)
Or
For example:
ALTER TABLE publishers ADD COUNTRY varchar(30) NULL DEFAULT('USA')
adds the country column to the pubs database. (Note that this column already exists in the SQL Server 6.0 pubs database.)
(For details, see the ALTER TABLE statement in the Microsoft SQL Server Transact-SQL Reference.)