I have a question. I want to show the number of registered user on my site.
i already tried to make this query:
select count(*) from members
and then show the result of the count. but for big table.. it's not good idea i think
but i think it's not optimize.. when i do an explain, the query reads all rows... i suppose that's normal to counts the numbers of members
But is there a best way to do it for performance and optimization? Thanks a lot