insert related data into two tables

From: filippo2991(at)virgilio(dot)it
To: pgsql-sql(at)postgresql(dot)org
Subject: insert related data into two tables
Date: 2006-05-14 21:40:49
Message-ID: 1147642849.180115.107460@u72g2000cwu.googlegroups.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Hello,

I have two tables like these:

TABLE_1: people registry
fields: ID_T1, SURNAME, NAME
ID_T1 is primary key

TABLE_2: work groups
fields: ID_T2, TASK
ID_T2 is foreign key related to ID_T1

the first table is the list of employees, the second the task.

Sometime I need to insert a new employee and at the same time the task
for him:
I want to INSERT TO table 1 JOHN DOE (the ID is assigned automatically
since it's a primary key) and INSERT TO table 2 the ID and the task
name for JOHN DOE. Is it possible to create a single query? What is the
best way to do this?

Thanks,

Filippo

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Emi Lu 2006-05-15 21:40:40 Re: Find min and max values across two columns?
Previous Message Jean-Paul Argudo 2006-05-14 18:50:21 Re: PL/PGSQL - How to pass in variables?