1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
Tables
=======
A table makes up a collection of :doc:`/columntypes` that
can be joined together in order to create relational result sets.
Each record in the table is called a row, and a table can have an infinite
set of rows. Each row represents one piece of data, and each column can
be thought of as representing a component of that piece of data.
So, for example, if we have a table for a customer information, then
the columns may include information such as First Name, Last Name,
Address, City, Country, Birth Date, and so on. As a result, tables have
column headers, which specify the data types for that particular column.
.. toctree::
:maxdepth: 2
alter_table
create_table
drop_table
truncate
rename
|