Thanks Mantzios, your answer helped a lot! But I have a lot of multi column
foreign keys! Any other ideia??

  Thanks in advance!
 

-----Mensagem original-----
De: Achilleus Mantzios [mailto:[EMAIL PROTECTED] 
Enviada em: quarta-feira, 28 de junho de 2006 04:01
Para: Rodrigo Sakai
Assunto: Re: [SQL] Joins between int and int[]

O Rodrigo Sakai Ýãñáøå óôéò Jun 27, 2006 :

>   Hi,
> 
>  
> 
>   I want to use the system catalog tables/views to query some things, and
> one of the queries I have to do is joining pg_attribute and pg_constraint
to
> know what constraint belongs to which table.attribute. My question is how
> can I write the join clause between a int (pg_attribute.attnum) and int[ ]
> (pg_constraint.conkey).

Are you having tables with multi column foreign keys?
e.g. (a,b) REFERENCES partable(para,parb).

If not then join with pg_constraint.conkey[1],
if yes then the problem becomes a little less trivial.

> 
>  
> 
>  
> 
> The query is:
> 
>  
> 
> select relname, attname, attnotnull, atthasdef
> 
>   from pg_class as pc 
> 
>   inner join pg_attribute as pa
> 
>     on pc.oid=pa.attrelid
> 
>   inner join pg_constraint pcons
> 
>      on pc.oid=pcons.conrelid
> 
>     and pa.attnum = pcons.conkey                  -------> the problem
> 
>  
> 
>  
> 
>  Thanks!!! 
> 
>  
> 
> 

-- 
-Achilleus


---------------------------(end of broadcast)---------------------------
TIP 1: if posting/reading through Usenet, please send an appropriate
       subscribe-nomail command to [EMAIL PROTECTED] so that your
       message can get through to the mailing list cleanly

Reply via email to