problem with slow select - Mailing list pgsql-sql

From francescosaf
Subject problem with slow select
Date
Msg-id francescosaf.152kao@mail.webservertalk.com
Whole thread Raw
Responses Re: problem with slow select  (Rod Taylor <pg@rbt.ca>)
List pgsql-sql
hi 

I have two tables:

table:    XXXX
idcode varchar(15) -->references (idcode) table YYYY
latitude float
longitude float
time timestamp
p_a char(1)
barcode....
address....
idprog serial... -->primary key
flag boolean

table YYYY
idfact numeric(7,0) --->references .....
idcode varchar(15) --->primary key
name varchar(20)

I want to exctract the last operation of table XXXX for each idcode of
table YYYY where idfact=123

I HAVE THIS QUERY BUT IT IS TOO SLOW (10 SECONDS):

select XXXX.*,YYYY.name from YYYY,XXXX  join (select
XXXX.idcode,max(XXXX.tempo) as tempo from XXXX,YYYY where
YYYY.idfact=123 and XXXX.idcode=YYYY.idcode  group by XXXX.idcode)
temptable on (temptable.tempo=XXXX.tempo and
temptable.idcode=XXXX.idcode) where YYYY.idfact=123 and
XXXX.idcode=YYYY.idcode order by YYYY.name;

PLEASE HELP ME



--
francescosaf
------------------------------------------------------------------------
Posted via http://www.webservertalk.com
------------------------------------------------------------------------
View this thread: http://www.webservertalk.com/message189539.html


pgsql-sql by date:

Previous
From: denis@coralindia.com
Date:
Subject: Re: Can someone tell me why this statement is failing?
Next
From: Jeremy Semeiks
Date:
Subject: Re: Join issue on a maximum value