2 Day Developer > Managing Database Objects > Managing Tables
Managing Tables |
Previous |
Next |
Tables are the basic unit of data storage in an Oracle database. They hold all user-accessible data. A table is a two-dimensional object made up of columns and rows. For example, the employees
table includes (vertical) columns called employee_id
, first_name
, and last_name
. Each (horizontal) row in the table contains a value for employee name and ID number. The most common type of table in an Oracle database is a relational table.
This section contains the following topics:
See Also:
|