SQLServer Ajouter une colonne à la table

ALTER TABLE dbo.doc_exa 
ADD column_b VARCHAR(20) NULL, 
	column_c INT NULL ;
MzanziLegend