18
Deleting  or Modifying a Table
Deleting:
     ALTER TABLE   Person
               ADD   phone  CHAR(16);
     ALTER  TABLE   Person
               DROP  age;
Altering: (adding or removing an attribute).
What happens when you make changes to the schema?
Example:
DROP Person;
Example:
Exercise with care !!