Thread: Re: select first(...

Re: select first(...

From
CoL
Date:
hi,

Roland wrote:

> Hello,
>
> Which is the postgres equivalent of the function select first(...) in ms
> Access  ?
> Thank for your help
> Roland

se the docs for limit and offset

select .... limit 1;

C.