Re: JOINING TWO TABLES - Mailing list pgsql-novice

From Richard Broersma Jr
Subject Re: JOINING TWO TABLES
Date
Msg-id 328187.8244.qm@web31813.mail.mud.yahoo.com
Whole thread Raw
In response to JOINING TWO TABLES  (vamseelist@gmail.com)
List pgsql-novice
--- vamseelist@gmail.com wrote:
> I mean d,e got 1 and 2 in mgr table.
> d,e got 4,5 in new table.
>
> I would like to replace 1 1 2 with 4 4 5.
>
> I would like to modify above table as

I would modify your manager and employees tables to look like:


CREATE TABLE Employees (
  emp_id SERIAL PRIMARY KEY,
  name text,
  mgr_id INTEGER);

CREATE TABLE Managers (
  mgr_id INTEGER PRIMARY KEY REFERENCES Employees( emp_id ));

   ALTER TABLE Employees
ADD CONSTRAINT managers_of_employees
   FOREIGN KEY ( mgr_id )
    REFERENCES Managers( mgr_id );

Regards,
Richard Broersma Jr.

pgsql-novice by date:

Previous
From: vamseelist@gmail.com
Date:
Subject: JOINING TWO TABLES
Next
From: "Angelica Garcia"
Date:
Subject: tree-like structures in pgsql