How to add a column with NOT NULL to an existing table?
I have tried like: ALTER TABLE MY_TABLE ADD STAGE INT NOT NULL;
But it gives the error message like: "ALTER TABLE only allows columns to be added that can contain nulls or have a DEFAULT definition specified"
So, can anyone help me?