TABLE OPERSTION IN ORACLE DATABASE
TABLE OPERTION---ALTERING STRUCTURE · Introduction · Renaming a table · Adding column to a table · Removing column from a table. · Increasing width of a columns. · Decreasing width a columns. · Changing data types of a columns. · Copying of a table. Introduction:- Let us turn our focus on modifying the existing structure of table. By structure we means column names, data types and constrains. Renaming a table:- Now change the table name COLLAGE TO COLLAGES. SQL> select * from collage; COLLAGE ...