Answers for "oracle sql add attribute to table"

SQL
14

oracle add attribute to table

-- 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
0

oracle add attribute to table

ALTER TABLE table_name 
ADD column_name data_type constraint;
Posted by: Guest on June-03-2021

Code answers related to "oracle sql add attribute to table"

Code answers related to "SQL"

Browse Popular Code Answers by Language