Re: Antw: many-many mapping between unique tables - Mailing list pgsql-sql

From Indraneel Majumdar
Subject Re: Antw: many-many mapping between unique tables
Date
Msg-id Pine.SGI.3.96.1001016144209.121309E-100000@www.cdfd.org.in
Whole thread Raw
In response to Re: Antw: many-many mapping between unique tables  ("Gerhard Dieringer" <DieringG@eba-haus.de>)
List pgsql-sql
Sorry for splitting mails. Is there some way of using the oid of each
row to do the mapping instead of creating two more columns of integers?
The third table can then be like this:

create table T3(T1    oid,T2    oid
);

also how can I find out the oid of a particular row? and how can I use
this oid in a select statement?

Thanks,
Indraneel

On Mon, 16 Oct 2000, Gerhard Dieringer wrote:

> I don't know what type of data your columns x and y contain. If they are,
> for example, of type text and contain long strings, then it would be better
> to add an integer id column in each tables T1 and T2: x_id and y_id and
> use these ids in the table T12.
> 
> Then you only have to repeat the (short) numeric vales in T12. But I think there 
> is no way to totaly avoid any repetition.
> 
> --------------
> Gerhard
> 

/************************************************************************.
# Indraneel Majumdar                  ¡  E-mail: indraneel@123india.com  #
# Bioinformatics Unit (EMBNET node),  ¡  URL: http://scorpius.iwarp.com  #
# Centre for DNA Fingerprinting and Diagnostics,                         #
# Hyderabad, India - 500076                                              #
`************************************************************************/



pgsql-sql by date:

Previous
From: Indraneel Majumdar
Date:
Subject: Re: Antw: many-many mapping between unique tables
Next
From: Josh Berkus
Date:
Subject: Re: Antw: many-many mapping between unique tables