Agregue una nueva columna, no un servidor NULL SQL
ALTER TABLE MY_TABLE
ADD STAGE INT NOT NULL
DEFAULT '0';
Marton
ALTER TABLE MY_TABLE
ADD STAGE INT NOT NULL
DEFAULT '0';
ALTER TABLE YourTable
ADD Foo INT NULL /*Adds a new int column existing rows will be
given a NULL value for the new column*/