Re: first_value/last_value - Mailing list pgsql-general

From Melvin Davidson
Subject Re: first_value/last_value
Date
Msg-id CANu8FixVmZpbhRoH9VmX=9P1jw66wF_9_dmbRDFZE1x+o7nnxg@mail.gmail.com
Whole thread Raw
In response to Re: first_value/last_value  (Adam Brusselback <adambrusselback@gmail.com>)
Responses Re: first_value/last_value
List pgsql-general


On Wed, May 18, 2016 at 10:36 PM, Adam Brusselback <adambrusselback@gmail.com> wrote:
Here is an example that works in a single query.  Since you have two different orders you want the data back in, you need to use subqueries to get the proper data back, but it works, and is very fast.

CREATE TEMPORARY TABLE foo AS 
SELECT generate_series as bar
FROM generate_series(1, 1000000);

CREATE INDEX idx_foo_bar ON foo (bar);


SELECT *
FROM (
SELECT bar
FROM foo
ORDER BY bar asc
LIMIT 1
) x
UNION ALL 
SELECT *
FROM (
SELECT bar
FROM foo
ORDER BY bar desc
LIMIT 1
) y;

DROP TABLE foo;

Seems to me SELECT min(<column>),  max(<column>) FROM deja.vu ; would also work.


--
Melvin Davidson
I reserve the right to fantasize.  Whether or not you
wish to share my fantasy is entirely up to you.

pgsql-general by date:

Previous
From: Adam Brusselback
Date:
Subject: Re: first_value/last_value
Next
From: Tom Smith
Date:
Subject: Re: first_value/last_value