Lets say I have the following tables.
CREATE TABLE animals(id primary key, name varchar, type varchar);
CREATE TABLE dogs (breed varchar)INHERITS (animals);
CREATE TABLE birds (bool hasFeathers) INHERITS (animals);
Is there a way I can specify a default on the child table that will po
I have the following related tables:
PEOPLE
--
peopleid pkey,
name,
etc
GROUPS
-
groupid pkey,
description,
etc
PEOPLEGROUPS
---
peopleid pkey/fkey,
groupid pkey/fkey
What is the CORRECT way (in Postgres) to define the PEOPLEGROUPS table so
that it has