Select for LEFT JOIN

From: Linh Luong <linh(dot)luong(at)computalog(dot)com>
To: pgsql-sql(at)postgresql(dot)org
Subject: Select for LEFT JOIN
Date: 2001-05-24 21:04:04
Message-ID: 3B0D7744.839FEC25@computalog.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Hi,

I am trying to do a 2 joins between 3 tables.

ie)
select <some field>, coalesce(TRR.ABC, SOC.ABC) as newABC, ...
from A join (B join C on (..)) on (..)) as TRR
left join
(D join E on (..)) as SOC on (TRR.Field1=SOC.Field2)

When I run this it says that there is an ambiguous field. Yes after the
join for TRR and SOC they both contain a fields name ABC. How can I
rename this field in the sql statement or how can I make it so the sql
statement know that they are different.

Please help.. .thanks

--
Linh Luong
Computalog Ltd.
Software Developer
Phone: (780) 464-6686 (ext 325)
Email: linh(dot)luong(at)computalog(dot)com

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Linh Luong 2001-05-24 21:18:47 Select help
Previous Message postgresql 2001-05-24 20:44:28 ports in use question