Which way to count a number of rows should be faster in MySQL?
This:
SELECT COUNT(*) FROM ... WHERE ...
Or, the alternative:
SELECT 1 FROM ... WHERE ...
// and then count the results with a built-in function, e.g. in PHP mysql_num_rows()
One would think that the first method should be faster, as this is clearly database territory and the database engine should be faster than anybody else when determining things like this internally.
SELECT 1and notSELECT *. Is there a difference? – Franz Feb 20 '11 at 22:00mysql_query(), for instance, the entire result set is sent to PHP from MySQL, regardless of what you do with that data. – toon81 Feb 26 at 8:28