Oracle ALTER TABLE DROP Column By Examplesby Ed ChenJune 26, 2023May 24, 2023The syntax of dropping a column is pretty easy. SQL> show user USER is "HR" SQL> alter table employees drop column salary; Table altered. As… Read More »Oracle ALTER TABLE DROP Column By Examples
How to Resolve ORA-12992: cannot drop parent key columnby Ed ChenJune 23, 2023July 2, 2023ORA-12992 Tried to drop a column from a table, but it failed with ORA-12992. SQL> alter table customers drop column customer_id; alter table customers drop… Read More »How to Resolve ORA-12992: cannot drop parent key column