Re: Discrepancy in query output - Mailing list pgsql-sql

From Lahari Sengupta
Subject Re: Discrepancy in query output
Date
Msg-id CAKEx41rbN2KnomiQAOQYkf9VXe0-Q_wY_u3qdFHK+PmU785Xzg@mail.gmail.com
Whole thread Raw
In response to Discrepancy in query output  (Lahari Sengupta <jhinik8@gmail.com>)
Responses Re: Discrepancy in query output  ("David G. Johnston" <david.g.johnston@gmail.com>)
List 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@gmail.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'

pgsql-sql by date:

Previous
From: Lahari Sengupta
Date:
Subject: Discrepancy in query output
Next
From: "David G. Johnston"
Date:
Subject: Re: Discrepancy in query output