May 2018
Intermediate to advanced
576 pages
30h 25m
English
Let's just create a basic schema to run some examples:
postgres=# create schema test;CREATE SCHEMApostgres=# create table test.a (col1 INTEGER);CREATE TABLEpostgres=# create table test.b (col1 INTEGER);CREATE TABLEpostgres=# create table test.c (col1 INTEGER);CREATE TABLE