Re: Getting the output of a function used in a where clause

From: PFC <lists(at)boutiquenumerique(dot)com>
To: "Bill Lawrence" <bill(dot)lawrence(at)cox(dot)net>, pgsql-sql(at)postgresql(dot)org
Subject: Re: Getting the output of a function used in a where clause
Date: 2005-04-11 08:51:28
Message-ID: op.so1772t7th1vuj@localhost
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql


try:

SELECT zipcode, zipdist($lat1d,$lon1d,lat,long) as distance from zipcodes
where distance <= $dist;”;

OR you could use a gist index with a geometric datatype to get it a lot
faster.

On Sat, 09 Apr 2005 03:43:39 +0200, Bill Lawrence <bill(dot)lawrence(at)cox(dot)net>
wrote:

> HI,
>
> I’m a newbie so please bear with me. I have a function defined (got it
> from
> one of your threads… thanks Joe Conway) which calculates the distance
> between 2 zip code centeroids (in lat,long). This thing works great.
> However, I want to sort my results by distance without incurring the
> additional burden of executing the function twice. A simplified version
> of
> my current SQL (written in a perl cgi) that returns a set of zip codes
> within a given radius is:
>
>
> What I want to write is something like:
>
> $sql = “SELECT zipcode, distance from zipcodes where distance <= $dist
> order
> by distance;”;
>
> But I don’t the magic SQL phrase to populate the distance variable using
> my
> nifty function. Do I need to create an output type for distance?
>
> Thanks in advance!
>
> Bill
>
>
>

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Sean Davis 2005-04-11 10:07:24 Re: [SQL] Problems with Set Returning Functions (SRFs)
Previous Message PFC 2005-04-11 08:48:45 Re: pg 8.0.1-r3 killls pgadmin3 and phppgadmin