Re: left outer join issue? - Mailing list pgsql-general

From Mike Rylander
Subject Re: left outer join issue?
Date
Msg-id 200405181507.15456.miker@purplefrog.com
Whole thread Raw
In response to Re: left outer join issue?  (Dev <dev@umpa-us.com>)
List pgsql-general
On Tuesday 18 May 2004 02:26 pm, Dev wrote:
> At 02:28 PM 5/18/2004, Bruno Wolff III wrote:
> >On Tue, May 18, 2004 at 14:10:04 -0400,
> >
> >   Dev <dev@umpa-us.com> wrote:
> > > Hello all,
> > >
> > > I need to do a left out join where a.field1 ilike %b.field2%
> > >
> > > But I can not figure out the exact syntax to using the ilike in the
> > > join?
> >
> >Use the ON clause syntax.
>
> Here is what it actually looks like
>   LEFT OUTER JOIN table4 AS d ON (a.field1 ilike "%d.field2%") )

Use
        LEFT OUTER JOIN table4 AS d ON (a.field1 ILIKE '%' || d.field2 || '%')

-miker

pgsql-general by date:

Previous
From: Bruno Wolff III
Date:
Subject: Re: left outer join issue?
Next
From: Keary Suska
Date:
Subject: Re: left outer join issue?