Answers for "alter table add column oracle change data type"

SQL
0

oracle alter table add column

ALTER TABLE table_name 
	ADD column_name data_type constraint;
Posted by: Guest on January-12-2021
0

oracle sql alter view add column

-- Views cannot be altered, they have to be recreated

-- If you want to add columns then just run the CREATE OR REPLACE VIEW 
-- statement again with a different select.
Posted by: Guest on April-23-2021

Code answers related to "alter table add column oracle change data type"

Code answers related to "SQL"

Browse Popular Code Answers by Language