Add a Column To An Existing Table
If you need to add a column to an existing table with a default value:
ALTER TABLE YourTableName
ADD YourColumnName varchar(50)
DEFAULT ‘your default value’ WITH VALUES
Não há mais suporte para esse navegador.
Atualize o Microsoft Edge para aproveitar os recursos, o suporte técnico e as atualizações de segurança mais recentes.
If you need to add a column to an existing table with a default value:
ALTER TABLE YourTableName
ADD YourColumnName varchar(50)
DEFAULT ‘your default value’ WITH VALUES