I have a table with 2 columns requested with NOT NULL constraint as shown below
Col1 | Col2 |
---|---|
Val1 | Val2 |
Val3 | Val4 |
I am trying to add a new column called 'Col3'
ALTER TABLE table
ADD COLUMN Col3 INTEGER NOT null
But it returns an error saying 'having NULL values in a row' Is there any way of which I can use it?