Re: Simple way to get missing number - Mailing list pgsql-general

From Alban Hertroys
Subject Re: Simple way to get missing number
Date
Msg-id CAF-3MvO+7b6OMGsna1QkajxNzY5XG+XAUuGQgd=qSpAKfP5Ydg@mail.gmail.com
Whole thread Raw
In response to Simple way to get missing number  (Emi Lu <emilu@encs.concordia.ca>)
List pgsql-general
On 24 April 2012 16:15, Emi Lu <emilu@encs.concordia.ca> wrote:
> Good morning,
>
> May I know is there a simple sql command which could return missing numbers
> please?
>
> For example,
>
> t1(id integer)
>
> values= 1, 2, 3 .... 5000000
>
> select miss_num(id)
> from   t1 ;
>
>
> Will return:
> ===============
> 37, 800, 8001
>
> Thanks a lot!
> Emi

You can use generate_series() for that, like so:

SELECT num AS missing FROM generate_series(1, 5000000) t(num)
EXCEPT
SELECT id AS missing FROM t1

--
If you can't see the forest for the trees,
Cut the trees and you'll see there is no forest.

pgsql-general by date:

Previous
From: hubert depesz lubaczewski
Date:
Subject: Re: Simple way to get missing number
Next
From: rihad
Date:
Subject: Fractions of seconds in timestamps