May 2018
Intermediate to advanced
576 pages
30h 25m
English
Let's start with a simple example of a table, as follows:
postgres=# select * from birthday;
This gives the following output:
name | dob -------+-------- simon | 690926(1 row)
The preceding table was created using this command:
CREATE TABLE birthday( name TEXT, dob INTEGER);