Re: What's faster?

Поиск
Список
Период
Сортировка
От Martijn van Oosterhout
Тема Re: What's faster?
Дата
Msg-id 20060209193811.GE14852@svana.org
обсуждение исходный текст
Ответ на Re: What's faster?  ("Uwe C. Schroeder" <uwe@oss4u.com>)
Ответы Insert more than one t-uple in a single sql  ("Gonzalo Villegas" <chalo1970@hotmail.com>)
Список pgsql-general
On Thu, Feb 09, 2006 at 10:52:03AM -0800, Uwe C. Schroeder wrote:
> Depending on your keys neither.
> Rather let the DB handle the resultset. count(*) is quite slow.
>
> How about something like
>
> select blablabla from _complex_query order by _key_ (optional DESC or ASC)
> OFFSET xxx LIMIT 15
>
> where your offset would be a parameter from the php side and is basically the
> page number of the number of pages you want to display.
> The only drawback of that is that you will never see the total number of hits.
> So maybe you do a count(*) ONCE and then use the above query to loop over the
> resultset - or you don't show the number of pages and just have a "next
> results" and "previous results" button that adjusts the offset parameter.

Another possibility is to put a limit of 151. If you get 151 rows you
print 1 2 3 .. 8 9 10 More. If you get less you know how many pages. As
you get to page 5 you can limit to 225+1.

Have a nice day,
--
Martijn van Oosterhout   <kleptog@svana.org>   http://svana.org/kleptog/
> Patent. n. Genius is 5% inspiration and 95% perspiration. A patent is a
> tool for doing 5% of the work and then sitting around waiting for someone
> else to do the other 95% so you can sue them.

Вложения

В списке pgsql-general по дате отправления:

Предыдущее
От: "Benjamin Arai"
Дата:
Сообщение: Return more then one value using PL
Следующее
От: "Mike G."
Дата:
Сообщение: Update table with data from another table