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 Quote Link to comment 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. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.