Re: select items, and max id - Mailing list pgsql-novice

From Luis H.
Subject Re: select items, and max id
Date
Msg-id 003e01c36dd7$bdee8eb0$0301a8c0@bigbertha
Whole thread Raw
In response to Force Lock  ("Girish Bajaj" <gbajaj@tietronix.com>)
Responses Re: select items, and max id
List pgsql-novice
Thanks for the info. I just realized I had thought out the logic of my web
app in the wrong way. I will now be working with the number of items in the
table. I know there is a count() query, and earlier someone asked for a
better solution (that doesn't need to cycle through the table). Tom Lane
mentioned pg_class.reltuples, but said it wasn't a completely accurate
measure. Any suggestions?

Thanks.

----- Original Message -----
From: "Bruno Wolff III" <bruno@wolff.to>
To: "Luis H." <pgsql-novice@geekhouse.no-ip.com>
Cc: <pgsql-novice@postgresql.org>
Sent: Thursday, August 28, 2003 10:36 PM
Subject: Re: [NOVICE] select items, and max id


> On Thu, Aug 28, 2003 at 22:11:49 -0400,
>   "Luis H." <pgsql-novice@geekhouse.no-ip.com> wrote:
> > I have a table where each row has an id unique identifier (separate from
the one postgreql does automatically). I want to be able to do a certain
SELECT query returning various rows, and also be able to check what the
maximum id was among the rows in the result. Is it possible to do this all
in the same query? Right now I do it in a very dumb way -- I execute the
query to get all the data, and then I re-execute it as a subquery and pull
out the max(id).
>
> Yes and no. You won't be able to return rows and the max id of the rows
> without effectively doing the query twice. However, you could order the
> output rows by the id and check the first (or last depending on sort
> direction) row to get the value you want.
>



pgsql-novice by date:

Previous
From: Cath Lawrence
Date:
Subject: Boolean variables...
Next
From: Bruno Wolff III
Date:
Subject: Re: select items, and max id