Answers for "how to add a column with default value to the already existing rows for that column"

SQL
-1

add column alter table default value

ALTER TABLE PERSON
ADD IS_ACTIVE VARCHAR2(1) DEFAULT 'N' NOT NULL
Posted by: Guest on August-12-2020

Code answers related to "how to add a column with default value to the already existing rows for that column"

Code answers related to "SQL"

Browse Popular Code Answers by Language