Debate
Once you get more fluent in SQL, you will realize that many queries are much shorter to write in SQL than in PHP. Since "programmer time" is worth a lot, picking the shorter one is often best.
Doing the 'work' in SQL may or may not be faster. For example, SELECT AVG(x) FROM big_table
returns only one row, thereby having much less network traffic than if you copied the entire table into PHP, thereby probably being faster.
GROUP BY
, ORDER BY
, subqueries, etc are much more concise in SQL.
JOIN
is probably always faster in SQL -- otherwise you have to go back and forth between PHP and MySQL to do the lookups in the 'second' table.
Millions of rows might choke PHP, whereas SQL can handle virtually unlimited number of rows.
But, on the other hand, SQL has to work a lot harder to fetch a thousand rows than PHP simply walking through an array.
What do I do? Whatever seems appropriate each case case. As for "1000 rows", that's pretty trivial for either MySQL or PHP. I usually embed timers in my code (microtime(true)
); if a web page seems slow, I look for the 'worst' part of it to optimize.
What should you do? Do it in SQL. It's a learning experience. Back off to PHP only if it gets too tough.
manpreet
Best Answer
2 years ago
I asked this on the general site, but they suggested I come here for ultimate optimisation. It really boils down to which is faster; doing a load of calculations in php with database stuff that is accessed once, or doing two database calls. (There are about 1000-1500 table entries, and I have to use the lot.)
Here is my original question:
I am not a great php coder (I come from C++). I am using php only for database entry.
I have a database with the following:
There are about 1000-1500 entries in that table. Every morning and afternoon 5 people take a test which effects their overall average and recent average. (This is updated elsewhere, but not shown here.) After that is calculated for those 5 people, then the rankings of all 1000-1500 will be effected, so I have written the code below. Is it optimal?
The thing I am most concerned with is I am doing a MySql UPDATE about a 1000 times. Is that great? Should I be doing it another way? (Also feel free to optimise any other code in the function. As I say, I am from a C++ background, so do not really know the nuances of php.)