समाधान/समाधान
इस समस्या को हल करने के लिए, हमेशा मौजूदा तालिकाओं में निम्न के समान तरीके से गैर-शून्य कॉलम जोड़ें:
-- Add the column as nullable with a default.
ALTER TABLE existingTable ADD newColumn NUMBER(1) DEFAULT 5;
-- Add the not-null constraint.
ALTER TABLE existingTable MODIFY newColumn NOT NULL;