Re: Possible use of a subselect?

From: Manfred Koizar <mkoi-pg(at)aon(dot)at>
To: "Adam Erickson" <adamre(at)cox(dot)net>
Cc: "Pgsql-Novice" <pgsql-novice(at)postgresql(dot)org>
Subject: Re: Possible use of a subselect?
Date: 2002-05-27 07:44:50
Message-ID: 8eo3fu4qq1g5qcnbsg3hoai9l41htrckiu@4ax.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

On Sun, 26 May 2002 23:43:50 -0500, "Adam Erickson" <adamre(at)cox(dot)net>
wrote:
>Given the table structure:
>string
>------
>id serial int4
>stringid int4 not null
>language varchar(32)
>content varchar(255)
>
>I'm trying to get a query that will return the
>English version of every string ("SELECT id,content FROM STRING WHERE
>language='English' and stringid=0") and their translated counterpart (say,
>Korean) which would be ("SELECT content FROM string WHERE
>stringid=ID.OF.ENGLISH.VERSION").

Adam,
no need for a subselect. Try an outer join:

SELECT e.id, e.content, k.content
FROM string e LEFT JOIN string k
ON e.id = k.stringid
WHERE e.stringid = 0 AND k.language = 'Korean';

HTH.
Servus
Manfred

In response to

Responses

Browse pgsql-novice by date

  From Date Subject
Next Message Manfred Koizar 2002-05-27 07:53:41 Re: Possible use of a subselect?
Previous Message Rasmus Mohr 2002-05-27 07:36:37 Re: Copy Comand question