I'm trying to adding a column into a table whose fields are empty, neither "0" nor "null".
"ALTER TABLE `mytable` ADD COLUMN `newcolumn` INT NOT NULL"
makes all fields "0". I also tried DEFAULT='' option but then the column doesn't even added. So how to achieve really blank fields?