Chapter 14
Chapter 14
DROPPING TABLES
The DROP TABLE command lets you drop a table from the database.
e.g. to drop a table employee, we need to write :
DROP TABLE employee ;
To add a column to a table, ALTER TABLE command can be used as per following syntax:
MODIFYING COLUMNS
Column name and data type of column can be changed as per following syntax :
To delete a column from a table, the ALTER TABLE command takes the following form :