Hi- I am new to the DB2 world. I wanted to add a not null column with a default to an existing table with data. Not realizing I could do that, I added the column as a Nullable column, updated the existing data. Now I need to add a NOT NULL constraint. Could I do that? If not, I would like to DROP the column. I tried the syntax
ALTER TABLE <tableName> DROP COLUMN <columnName>.
I get an error "SQL0104N An unexpected token "C_CNTR_VST_FR_SFE" was found following "". Expected tokens may include: "KEY "."
Any help is greatly appreciated.