我正在运行一个查询,在其中查找一条记录,并在一段时间后查找另一条记录。
表定义:
(
id integer primary key,
gpsstatus character(2),
datetime timestamp without time zone,
lat numeric(9,6),
lon numeric(9,6),
alt numeric(9,4),
time integer,
datafileid integer,
shape geometry,
speed double precision,
dist double precision,
shape_utm geometry,
lokalitet character(128),
cowid integer
)
日期时间、lokalitet、cowid、gpsstatus、shape 和 shape_utm 上有 gist-index 索引。
这些点应该每 5 秒采样一次,所以我试着做
select <something more>,p1.timestamp
from table p1, table p2
where p1.timestamp + interval '5 secound' = p2.timestamp
那运行得相当快,但后来我发现由于采样中的抖动,我损失了很多点,因此这些点可能相隔 4 到 6 秒。
然后我尝试了:
where (p2.timestamp, interval'0 second')
overlaps (p1.timestamp + interval '4 second', interval '2 second')
这需要很长时间。我还尝试了更简单的解决方案:
WHERE p1.timestamp + interval '4 second' <= p2.timestamp
AND p1.timestamp + interval '6 second' >= p2.timestamp
这也最终变得异常缓慢。
时间戳字段具有正常索引。是否有一种特殊的索引可以使这个查询可用?
目前的查询:
SELECT
p1.cowid,
p1.datetime,
st_distance(p1.shape_utm, lead(p1.shape_utm)
OVER (ORDER BY p1.datetime)) AS meters_obs,
st_distance(p1.shape_utm, lead(p1.shape_utm, 720)
OVER (ORDER BY p1.datetime)) AS meters_hour,
observation.observation
FROM (gpspoint p1 LEFT JOIN observation
ON (observation.gpspointid = p1.id)),
status
WHERE p1.gpsstatus = status.id
AND status.use = true;
我还可以通过询问一些特定的时间间隔来获得可接受的查询时间。