From: | "Phillip Smith" <phillip(dot)smith(at)weatherbeeta(dot)com(dot)au> |
---|---|
To: | "'roopa perumalraja'" <roopabenzer(at)yahoo(dot)com>, <pgsql-sql(at)postgresql(dot)org> |
Subject: | Re: Help with sub query |
Date: | 2007-03-19 04:03:08 |
Message-ID: | 02f901c769db$8122bc00$9b0014ac@wbaus090 |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-sql |
Add something like this to your query:
ORDER BY price_time LIMIT 1
Cheers,
~p
-----Original Message-----
From: pgsql-sql-owner(at)postgresql(dot)org [mailto:pgsql-sql-owner(at)postgresql(dot)org]
On Behalf Of roopa perumalraja
Sent: Monday, 19 March 2007 13:56
To: pgsql-sql(at)postgresql(dot)org
Subject: [SQL] Help with sub query
Hi all,
I want the last value from the group of rows. The table 'index_prices' is
index_code price_time price
XYZ 09:45:00 7.5
XYZ 09:46:00 7.4
XYZ 09:59:00 7.2
XYZ 10:00:00 7.3
XYZ 10:01:00 7.6
XYZ 10:02:00 7.3
.
.
.
The other table 'times' is for time interval
snapshot_time
10:00:00
10:30:00
11:00:00
I want the last value of the price between the interval of time. So I do
select tm.index_code, tm.price_date, t.snapshot_time, last(tm.price)
from index_prices_200703 tm, times t where tm.index_code = 'XYZ' and
tm.price_time >= (t.snapshot_time - '30 minute' :: interval)::time and
tm.price_time < t.snapshot_time
group by t.snapshot_time, tm.price_date, tm.index_code order by
tm.index_code, tm.price_date, t.snapshot_time;
The last() doesn't work. Can this be done using sub query?
Thanks in advance
_____
Food
<http://answers.yahoo.com/dir/index;_ylc=X3oDMTFvbGNhMGE3BF9TAzM5NjU0NTEwOAR
fcwMzOTY1NDUxMDMEc2VjA21haWxfdGFnbGluZQRzbGsDbWFpbF90YWcx?link=ask&sid=39654
5367> fight? Enjoy some healthy debate
in the Yahoo!
<http://answers.yahoo.com/dir/index;_ylc=X3oDMTFvbGNhMGE3BF9TAzM5NjU0NTEwOAR
fcwMzOTY1NDUxMDMEc2VjA21haWxfdGFnbGluZQRzbGsDbWFpbF90YWcx?link=ask&sid=39654
5367> Answers Food & Drink Q&A.
*******************Confidentiality and Privilege Notice*******************
The material contained in this message is privileged and confidential to
the addressee. If you are not the addressee indicated in this message or
responsible for delivery of the message to such person, you may not copy
or deliver this message to anyone, and you should destroy it and kindly
notify the sender by reply email.
Information in this message that does not relate to the official business
of Weatherbeeta must be treated as neither given nor endorsed by Weatherbeeta.
Weatherbeeta, its employees, contractors or associates shall not be liable
for direct, indirect or consequential loss arising from transmission of this
message or any attachments
From | Date | Subject | |
---|---|---|---|
Next Message | Karthikeyan Sundaram | 2007-03-19 05:38:05 | create view with check option |
Previous Message | roopa perumalraja | 2007-03-19 02:56:01 | Help with sub query |