Re: outer joins

From: "tjk(at)tksoft(dot)com" <tjk(at)tksoft(dot)com>
To: asakmanas(at)grafton(dot)lt (=?iso-8859-4?Q?Algirdas_=A9akmanas?=)
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: outer joins
Date: 2001-04-04 14:22:43
Message-ID: 200104041422.HAA10925@smtp3.tksoft.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Algirdas,

This should do the trick:

SELECT a.id,b.name FROM a,b WHERE a.id=b.id UNION SELECT id,null FROM a WHERE id NOT IN (SELECT id FROM b);

Troy

>
> Hi all,
>
> I'm new to postgre, I've changed my work and consequently now i'm moving
> from MS plaform.
> In MS SQL there are such constructs left or right outer join, in postgres
> there are no such thing
>
> Can You offer me strategy to make query that selects from table (a) and
> joins to it another (b)
> on e.g. a.id=b.aid but joins so that in case there is no value in table b
> NULL is left in result:
> in MS SQL i've used query:
>
> select a.id, b.name from a left outer join b on a.id=b.aid
>
> table a table b
>
> id | aid | name
> ----------- ----------------
> 1 1 | Tom
> 2 3 | Sam
>
> result:
> a.id | b.name
> ---------------------
> 1 | Tom
> 2 | NULL
>
> thank you in advance
>
> Algirdas ©akmanas
> IT manager
> +370 99 90369
> asakmanas(at)grafton(dot)lt
> Grafton Entertainment
> http://www.tvnet.lt
>
>
>
> ---------------------------(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)
>

In response to

  • outer joins at 2001-04-04 11:03:11 from Algirdas Šakmanas

Browse pgsql-sql by date

  From Date Subject
Next Message Poet/Joshua Drake 2001-04-04 14:49:06 Re: outer joins
Previous Message Cedar Cox 2001-04-04 12:32:57 max( bool )?