On Mon, Feb 11, 2002 at 11:42:31AM +0100,
tony <tony@animaproductions.com> wrote:
>
> How does one get the last record from a series of records? I just need
> the id field which is a sequence field
select max(id) from whatever;
(This assumes the sequence hasn't rolled over.)