Answers for "how to change column in sql oracle"

SQL
5

alter table oracle

ALTER TABLE tablename MODIFY columnname varchar2(100)
Posted by: Guest on February-13-2020
2

oracle rename column

ALTER TABLE my_table RENAME COLUMN old_name TO new_name;

-- To check if column exists before renaming it:
DECLARE
    l_cnt INTEGER;
BEGIN
    SELECT count(*) INTO l_cnt
    FROM dba_tab_columns		-- or all_tab_columns (depending on grants)
    WHERE owner = 'my_schema' AND table_name = 'my_table' 
    	AND column_name = 'my_col';
    IF (l_cnt = 1) THEN
        EXECUTE IMMEDIATE 'ALTER TABLE my_table 
        	RENAME COLUMN my_col TO my_new_name';
    END IF;
END;
Posted by: Guest on May-02-2021
0

alter table oracle

ALTER TABLE table_name
ADD CONSTRAINT constraint_name
   FOREIGN KEY (column1, column2, ... column_n)
   REFERENCES parent_table (column1, column2, ... column_n);
Posted by: Guest on October-05-2021

Code answers related to "how to change column in sql oracle"

Code answers related to "SQL"

Browse Popular Code Answers by Language