Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How many SQL queries is too many? i have the following piece of code which is in a loop that loops between 28-31 times depending on the month selected. It's used to change a css class depending on the date in the database. Everytime the $rows variable is called does it re-run the query? Is this code efficient?

$sql = ("SELECT * FROM dates WHERE dates.from<='".$date."' AND dates.to>='".$date."'");
$result = mysql_query($sql);
$rows = mysql_num_rows($result);
if ($rows >= 1)
{
    $row = mysql_fetch_array($result);

    if ($rows == 2)
        $calendar .= '<td class="calendar-day-booked">';
    else
    {
        if ($row['from'] == $date)
            $calendar .= '<td class="calendar-day-from">';
        elseif ($row['to'] == $date)
            $calendar .= '<td class="calendar-day-to">';
        else        
            $calendar .= '<td class="calendar-day-booked">';
    }
}
else
    $calendar.= '<td class="calendar-day">';
share|improve this question
There is nothing wrong about the efficiency of the code imo – php NoOb Dec 14 '12 at 22:02
I only see one query on the database. Am I missing something? – Mike Brant Dec 14 '12 at 22:03
1  
37.98 the magical number. – itachi Dec 14 '12 at 22:04
1  
@MikeBrant OP says they have that code inside a loop. The loop is not shown. – cryptic ツ Dec 14 '12 at 22:04
5  
It seems that you could easily reduce your code to simply send one query and handle the dates within your php code itself, but then again, there's not enough information to say for sure whether you can take this approach. Also, don't use mysql_* functions. – Vulcan Dec 14 '12 at 22:07
show 1 more comment

closed as not constructive by vascowhite, C. A. McCann, Jon Lin, Jocelyn, Graviton Dec 19 '12 at 2:56

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

up vote 6 down vote accepted

There's no definitive answer for what's too much, as there are so many paramters, e.g. how many users, what kind of hardware your database is on, etc.

If your question is "Will this be too slow for end users?" then you should profile the code, and see how it performs.

To answer your question about if each time $rows is assigned, is there a query, the answer is yes - you'll run a SQL query each time you get $rows.

Subjectively, I'd say that's inefficient. If this were my code, I'd rewrite it so that the SQL gets the whole month (e.g. set the date range accordingly), and then process the returned data in PHP, looping over the data and handling the month all at once. I'd probably loop over the returned data once, building an array that was keyed around the dates, and then implode that all together.

share|improve this answer

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