A data structure that organizes information into rows and columns.
Tables are used to organize data into a structured format defined by a fixed number of columns, and an unlimited number of rows. This allows a specific value to be retrieved for an individual column/row cell. In addition to storing data, a table can have associated metadata which may constrain/restrict the data it contains.
To CREATE a table, use the CREATE TABLE command,
To ALTER a table, use the ALTER TABLE command,
To delete or DROP a table, use the DROP TABLE command,
See: Table (database)