* Thus wrote Phil Dowson ([EMAIL PROTECTED]): > Hi, > > I have posted a similar question in php.db, but I was wondering if someone > could help out with a non-db issue. I am trying to display statistics of > visitors to my web site, and what I would like to do is show the average > number of visitors that have visited the site in a given month for a certain > day e.g..: > > Stats for www.mysite.com for 09/2003 > > Monday - 15 average - 65 total > Tuesday - 16 average - 66 total > Wednesday - 14 average - 65 total > Thursday - 13 average - 63 total > Friday - 15 average - 65 total > Saturday - 5 average - 25 total > Sunday - 6 average - 28 total
Still sort of a db question: select dayofweek(datefield) as dayindex, count(*) total, from stats group by dayindex; Curt -- "I used to think I was indecisive, but now I'm not so sure." -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php