Back to top Observing Table Information The easiest way to get information about a table is with the DESCRIBE command: DESCRIBE tablename Back to top Altering Tables To alter a table use the alter table command: alter table tablename add( columnname datatype, ...); alter table tablename modify ( column newdatatype); alter table drop column columnname; Back to top Deleting Tables To delete a table