From: | vhikida(at)inreach(dot)com |
---|---|
To: | "Alvaro Herrera" <alvherre(at)dcc(dot)uchile(dot)cl> |
Cc: | Martín Marqués <martin(at)bugs(dot)unl(dot)edu(dot)ar>, "Marco Lazzeri" <marcomail(at)noze(dot)it>, pgsql-general(at)postgresql(dot)org |
Subject: | Re: If table A value IS NULL then table B |
Date: | 2004-01-23 20:45:39 |
Message-ID: | 15228.146.74.1.99.1074890739.squirrel@webmail.inreach.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
As for the outer join, I think that the problem was ambiguous.
Is id_other_table a foreign key to id? Is there at most one row in each
table?
> On Fri, Jan 23, 2004 at 05:15:56PM -0300, Martín Marqués wrote:
>> Mensaje citado por Marco Lazzeri <marcomail(at)noze(dot)it>:
>>
>> > I want to write a query on table 'main' that if 'id_other_table' is
>> null
>> > returns value from itself, from table 'other' otherwise.
>>
>> SELECT CASE WHEN id_other_table IS NULL THEN id_other_table
>> ELSE id
>> FROM main,other
>
> What about COALESCE?
>
> SELECT COALESCE(id_other_table, id) FROM main, other WHERE ...
>
> (Also probably an OUTER JOIN is needed -- see
> http://www.varlena.com/GeneralBits/56.php)
>
> --
> Alvaro Herrera (<alvherre[a]dcc.uchile.cl>)
> "Saca el libro que tu religión considere como el indicado para encontrar
> la
> oración que traiga paz a tu alma. Luego rebootea el computador
> y ve si funciona" (Carlos Duclós)
>
> ---------------------------(end of broadcast)---------------------------
> TIP 2: you can get off all lists at once with the unregister command
> (send "unregister YourEmailAddressHere" to majordomo(at)postgresql(dot)org)
>
From | Date | Subject | |
---|---|---|---|
Next Message | Joshua D. Drake | 2004-01-23 20:51:29 | Re: sequence in schema -- broken default |
Previous Message | Martín Marqués | 2004-01-23 20:37:44 | Re: sequence in schema -- broken default |