Re: query-question - Mailing list pgsql-general

From Holger Marzen
Subject Re: query-question
Date
Msg-id Pine.LNX.4.50.0309122123020.8093-100000@bluebell.marzen.de
Whole thread Raw
In response to query-question  (Alexander Blüm <mailinglists1@gmx.de>)
List pgsql-general
On Thu, 11 Sep 2003, Alexander Blüm wrote:

> hello,
>
> I'm facing an odd problem.
> I have a query:
>
> SELECT "Kürzel", "Autor(en)", "Titel"
> FROM "tblTitelangaben"
> WHERE "Titel"||"Kürzel"||"Monographie-Kürzel"||"Autor(en)" ILIKE '%er%';
>
> this works like a charm.
>
> but if I add another ||"something" - which might be emtpy, I get no
> results.. why?
>
> WHERE
> "Titel"||"Kürzel"||"Monographie-Kürzel"||"Autor(en)"||"Herausgeber"
> ILIKE '%er%';
>
> || is the same as "OR", is it not?

No. Any component must not be NULL. Use coalesce("Herausgeber",'') to
ensure it's never NULL.

pgsql-general by date:

Previous
From: "Duffey, Kevin"
Date:
Subject: Why do I need to pass value for Serial type in Insert/Update?
Next
From: Martin Marques
Date:
Subject: Re: Why do I need to pass value for Serial type in Insert/Update?