Re: empty set

From: CG <cgg007(at)yahoo(dot)com>
To: Bruno Wolff III <bruno(at)wolff(dot)to>
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: empty set
Date: 2006-06-09 13:00:37
Message-ID: 20060609130037.32155.qmail@web37915.mail.mud.yahoo.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql


"select 1 where false" does indeed indicate an empty set. I was hoping for
something more elegant, but I'll take what I can get. :)

--- Bruno Wolff III <bruno(at)wolff(dot)to> wrote:

> On Thu, Jun 08, 2006 at 14:40:12 -0700,
> CG <cgg007(at)yahoo(dot)com> wrote:
> > PostgreSQL 8.1
> >
> > I've been trying to write a SQL prepare routine. One of the challenging
> > elements I'm running into is an empty set ...
> >
> > "select foo from bar where foo in ? ;"
> >
> > What if "?" is an set with zero elements? What is the proper value to use
> to
> > replace "?" indicating an empty set?
>
> Something like the following suggests you can put a subquery there that
> returns
> 0 rows. I don't think that wil work for prepared queries though; so it may
> not
> help you.
>
> bruno=> select * from test where test in (select 1 where false);
> test
> ------
> (0 rows)
>
>

__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
http://mail.yahoo.com

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Rommel the iCeMAn 2006-06-09 20:01:26 Problems Testing User-Defined Function
Previous Message Bruno Wolff III 2006-06-09 07:33:56 Re: empty set