Answers for "oracle ALTER COLUMN TO NOT NULL"

5

Change A filed to not null

ALTER TABLE
  clients
ALTER COLUMN
  phone
    NVARCHAR(20) NOT NULL;
Posted by: Guest on March-19-2020
14

oracle alter table add column not null

-- ALTER TABLE <table> ADD <column> <type>  <constraint>;
ALTER TABLE members ADD age NUMBER;
ALTER TABLE members ADD birth_date DATE NOT NULL;
ALTER TABLE members ADD registering DATE DEFAULT sysdate;
ALTER TABLE members ADD member_id NUMBER UNIQUE;
Posted by: Guest on June-19-2021

Code answers related to "oracle ALTER COLUMN TO NOT NULL"

Browse Popular Code Answers by Language