The14thGOD Posted December 10, 2009 Share Posted December 10, 2009 Recently I did a project where I didn't actually need to return anything, was just counting. At the time I was just doing it fast cause of time so I did: SELECT browser FROM the_stats WHERE browser='Firefox' (just as an example) Whats the performance on that vs: SELECT COUNT(*) FROM the_stats WHERE browser='Firefox' (my first impression would be the above is bad due to the * like SELECT *) or SELECT COUNT(browser) FROM the_stats WHERE browser='Firefox' Thanks for any help on clearing this up. Justin Link to comment https://forums.phpfreaks.com/topic/184696-performance-question/ Share on other sites More sharing options...
fenway Posted December 14, 2009 Share Posted December 14, 2009 * counts records; specifying an expression counts non-NULLs. Link to comment https://forums.phpfreaks.com/topic/184696-performance-question/#findComment-977212 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.