http://qs321.pair.com?node_id=483221


in reply to Re: MySQL query question...
in thread MySQL query question...

Perhaps because doing it in SQL, you can take advantage of the indexes and groupings the database provides, rather than having to fetch the whole set and then discard data in your script ? For instance, there's 1000 matches for any day within the range, however you want to display them 25 items at a time - do you fetch 1000 items each time, throwing away an unknown amount of records to find the first 25, then do the same on the second page request for the next 25 ? Or would it be more elegant to just ask the database 'records 26-50 matching these criteria, please ?' ?


the hatter

Replies are listed 'Best First'.
Re^3: MySQL query question...
by CountZero (Bishop) on Aug 13, 2005 at 12:01 UTC
    I would say that by using the module Date::Calc::Iterator you are more efficient as you iterate through the set of dates you want and not make a list of all dates and then discard most of them.

    Also you don't have to pollute your database with a table of all dates in the range you want.

    CountZero

    "If you have four groups working on a compiler, you'll get a 4-pass compiler." - Conway's Law