Jump to content

Performance question


The14thGOD

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.