Quote:
Originally Posted by Loon
Hi
I had a similar problem when i made some external site stats for my board. I think it's counting the total number of sessions in the table for members rather than for each unique id
replace:
PHP Code:
SELECT DISTINCT COUNT(userid)
with:
PHP Code:
SELECT COUNT(DISTINCT userid)
And it should solve the incorrect count of members.
|
Okay could someone please confirm and if it is the correct query then let me know, I'll change in the instructions