OraclePLSQL-Page4

                                                                            

πŸ‘‰Alter table Command

The structure of a table can be modified using the ALTER command.

Alter table works by making a temporary copy of the original table, the alteration is performed on the copy, then the original table is deleted and the new one is renamed.

πŸ‘‰Renaming Tables

πŸ‘‰Truncating Tables

Truncate table empties a table completely.
Truncate operations drop and re-create the table, which is much faster than deleting rows one by one.

πŸ‘‰Destroying Tables

Drop table statement with the table name can destroy a specific table.


Comments

Popular posts from this blog

SQL-ForeignKeyConstraint-Page6

Javascript-OOPs(Part3)-Inheritance - (9)

OraclePLSQL-Page3