Re: Discrepancy in query output

From: Lahari Sengupta <jhinik8(at)gmail(dot)com>
To: pgsql-sql(at)postgresql(dot)org
Subject: Re: Discrepancy in query output
Date: 2018-02-22 13:56:25
Message-ID: CAKEx41rbN2KnomiQAOQYkf9VXe0-Q_wY_u3qdFHK+PmU785Xzg@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Specially, if I remove the timing condition and want to select all from
servers then it misses one. How is it possible?

On Thu, Feb 22, 2018 at 3:20 PM, Lahari Sengupta <jhinik8(at)gmail(dot)com> wrote:

> My following query sometimes gives 72 rows and sometimes gives 71 rows as
> output. How could it misses one?
>
> SELECT distinct on (st.gid) sv.timing, st.gid, st.area
> FROM servers sv
> INNER JOIN sites st
> ON (st_distance(sv.geom, st.geom)<8.5) where
> sv.workmode = 1 AND sv.timing >= timestamp '2018-02-02 00:00:00'
> and sv.timing <= timestamp '2018-02-02 23:59:59'
>

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message David G. Johnston 2018-02-22 15:54:00 Re: Discrepancy in query output
Previous Message Lahari Sengupta 2018-02-22 13:20:56 Discrepancy in query output