Re: count question

From: Craig Ringer <craig(at)postnewspapers(dot)com(dot)au>
To: novice <user(dot)postgresql(at)gmail(dot)com>
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: count question
Date: 2008-04-09 02:11:39
Message-ID: 47FC25DB.2090803@postnewspapers.com.au
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

novice wrote:

> Is it possible to write a query to produce:
>
> meter_id | no_of_bays | bay_id
> ----------+------------+-----------
> 5397 | 2 | 5397-01
> 5397 | 2 | 5397-02
> 5409 | 3 | 5409-01
> 5409 | 3 | 5409-02
> 5409 | 3 | 5409-03

Sure. One way, not necessarily a particularly clever or efficient way,
is to do a join with:

generate_series(1, (select max(no_of_bays) from meter)) as i

and use a WHERE clause to select for `i <= no_of_bays'

eg:

SELECT
meter_id, no_of_bays, meter_id::text||'-'||i::text AS bay_id
FROM meter,
generate_series(1, (select max(no_of_bays) from meter)) as i
WHERE i <= no_of_bays;

--
Craig Ringer

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message rdeleonp 2008-04-09 03:34:22 Re: count question
Previous Message novice 2008-04-09 01:51:35 count question