This document discusses how to manage tables in a database including creating, modifying, and dropping tables. The key points are:
1. A table stores data in rows and columns and is created using the CREATE TABLE statement.
2. Tables can be modified using the ALTER TABLE statement to add, modify, or drop columns and constraints.
3. Integrity constraints like primary keys, foreign keys, checks and defaults are applied to tables to maintain data integrity.
4. External tables allow querying data stored outside the database in flat files and are created using the CREATE TABLE statement with the ORGANIZATION EXTERNAL clause.