Explain how to add a new column to an existing Table in Oracle.
- Use the ALTER TABLE statement to alter the definition of a nonpartitioned table, a partitioned table, a table partition, or a table subpartition.
- For object tables or relational tables with object columns, use ALTER TABLE to convert the table to the latest definition of its referenced type after the type has been altered.
Example:ALTER TABLE employee ADD (department VARCHAR2);