On Fri, Jul 26, 2002 at 19:26:15 -0700,
Ludwig Lim <lud_nowhere_man@yahoo.com> wrote:
> Hi:
>
> 1)
> When I do the ff sql statement
> select foo
> from bar
> limit n;
>
> Is it the same as :
> select foo
> from bar
> order by oid
> limit n;
No. If you don't use order by then there is no guarenteed order.