From: | Jie Liang <jliang(at)ipinc(dot)com> |
---|---|
To: | Najm Hashmi <najm(at)mondo-live(dot)com> |
Cc: | pgsql <pgsql-sql(at)postgresql(dot)org> |
Subject: | Re: Controlling Reuslts with Limit |
Date: | 2001-02-23 21:27:18 |
Message-ID: | Pine.BSF.4.10.10102231320250.58909-100000@tidal.ipinc.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-sql |
My understanding:
because you return a subset instead of a single value,
so between 2 select ... limit ... queries.
if you delete a record(say song_id=947) then insert it again.
then results are different.
So for a multiple users db, you should use oder by when you use limit.
Jie LIANG
St. Bernard Software
Internet Products Inc.
10350 Science Center Drive
Suite 100, San Diego, CA 92121
Office:(858)320-4873
jliang(at)ipinc(dot)com
www.stbernard.com
www.ipinc.com
On Sat, 24 Feb 2001, Najm Hashmi wrote:
> Hi,
> I was reading through Bruce's on line . I found follwing bit unclear...
>
> "Notice that each query uses ORDER BY . Although this clause is not required,
> LIMIT without ORDER BY returns random rows from the query, which would be
> useless. "
>
> When I run a query several time I get the same results as given
> flipr=# select song_id from songs limit 5;
> song_id
> ---------
> 945
> 946
> 947
> 948
> 949
> (5 rows)
>
> flipr=# select song_id from songs limit 5;
> song_id
> ---------
> 945
> 946
> 947
> 948
> 949
> (5 rows)
>
> flipr=# select song_id from songs limit 5;
> song_id
> ---------
> 945
> 946
> 947
> 948
> 949
> (5 rows)
>
> flipr=# select song_id from songs limit 5;
> song_id
> ---------
> 945
> 946
> 947
> 948
> 949
> (5 rows)
>
> flipr=# select song_id from songs limit 5;
> song_id
> ---------
> 945
> 946
> 947
> 948
> 949
> (5 rows)
>
> flipr=# select song_id from songs limit 5;
> song_id
> ---------
> 945
> 946
> 947
> 948
> 949
> I just want to know what exatly --"LIMIT without ORDER BY returns random rows
> from the query" --means
> Regards
>
From | Date | Subject | |
---|---|---|---|
Next Message | Tom Lane | 2001-02-23 21:39:27 | Re: Controlling Reuslts with Limit |
Previous Message | Bryan White | 2001-02-23 21:24:14 | Re: Controlling Reuslts with Limit |