vote up 0 vote down star

I mean what the most efficient way to get information about the quantity of your page's items and make sql query with LIMIT that you need. or I should get all items and then crop array with php functions?

now I do 2 queries: first to count all items and second to get items that I need with LIMIT.

OK, I'll be more concrete. For example I need to show a question on my page and 20 answers to this question. At the bottom there shold be page control: links to the next, prev page and so on. I want to show proper number of links (number of answers/20) and when I go to any link I want to recieve proper answers (for example 41 to 60 on the 3d page). So what's the best way to get number of items (answers) to show proper number of links and to get proper answers for each link?

flag
I have no idea about what you are trying to accomplish, can you reformulate the question? – Michiel Overeem Nov 14 '08 at 8:14
Try searching for pagination, there are loads of similar questions already answered – Tom Haigh Nov 14 '08 at 9:09

3 Answers

vote up 1 vote down check

I'm assuming you want a count of the number of rows you'll be reading so as to do some pagination or similar? I don't understand your need for the LIMIT in the context of your question. However, if you just want a count of how many rows have been found, use one of the following.

You select the count of all rows such as:

select count(*) as counted, name, address
from contact

Or found rows:

SELECT SQL_CALC_FOUND_ROWS, name, address
from contact

This may be mysql specific I'm not sure.

Update:

For pagination you would do something like the following - (Psuedocode)

$rows = array($result)
$num_rows = sql_calc_found_rows
$per_page = 20
$pages = ceil($num_rows / $per_page)

page
$rows_this_page = array()
$rows_this_page = get_values($rows, (min index)$page_number * $per_page - $per_page, (max index)$page_number * $per_page - 1)

link|flag
thank you very much, I need LIMIT to get proper items (answers) or i sholdn' do that? – luis-manuel Nov 14 '08 at 8:39
You only use LIMIT if you need a known number of rows.. for example if you wanted the top 50 answers you'd order by highest score and limit to 50. Then you wouldn't need a count at all though. You have to explain your question a little better. – Josh Smeaton Nov 14 '08 at 9:16
well, if I need answers from 31 to 50 I use LIMIT 31,20 don't I? – luis-manuel Nov 14 '08 at 9:38
I suppose, yes.. but then why would you need a count of rows at all? – Josh Smeaton Nov 14 '08 at 9:57
to show proper number of links at the bottom of the page: num_of_items/items_per_page – luis-manuel Nov 14 '08 at 10:03
show 2 more comments
vote up 2 vote down

I guess your'e trying to say you want to know how many items/answers there is in the query but only read up to 20 items at at time, for pagination.

Firstly: You really should look for a pagination package; lots and lots of people have had the same problem before and there probably exists both free/opensource and proprietary solutions for your programming language and framework. (If you say what language you are using I'm sure someone can reccomend a solution for you.)

Anyway, I know I like to know how things work, so this is how it usually does:

As far as I know the pagination code calculates the pages by doing one query using select count(*) from tblX where something divide this number with the items-per-page number and use ceiling (e.g. 4.1 => 5).

For listing the results per page a new query is required; don't worry the count query is terribly much faster than getting every result discarding the ones you don't need DO NOT DO THAT (that's the recipie for becoming the top story on this page). Something like select * from tblX where something limit Y offset Z where Y is the number of items per page, and Z is the the (requested_page - 1)*Y; page 1 will have offset 0, page 2 have offset 20 (if thats what Y are) etc..

But do not try to implement this manually, it's unneccesary, tedious and error prone, much better to use your time customizing a readymade solution.

link|flag
I'd be more inclined to load them all into an array (php), pass the array from page to page, and list a subset of that array on each page. That way you avoid many database calls. Only really necessary if you have lots of traffic and queries though. – Josh Smeaton Nov 14 '08 at 10:00
and if there is 10000 items? pass such an array? or do a query every time? – luis-manuel Nov 14 '08 at 10:08
vote up 0 vote down

I think you have to be a little more specific with your question. For example, what do you mean by "your page's items"? Are you referring to HTML FORM elements? What do your queries do? What is the goal? Please rephrase.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.