php-db | 2000121
Date: 12/08/00
- Next message: Michael Zornek: "[PHP-DB] Search engins"
- Previous message: Leonard Tambunan: "Re: [PHP-DB] 'date' data-type"
- Next in thread: Bob Hall: "[PHP-DB] Re: mysql_query question"
- Reply: Bob Hall: "[PHP-DB] Re: mysql_query question"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Hello all.
I have two tables in a database, one of which ("accesslog") contains a
series of host names (i.e., ao.net) and another ("countrycodes") that
contains the ISO descriptions for various domain suffixes (i.e., an entry
".net" with a description "US Networks").
What I'm trying to do is get a count of the hits from various countries
determined by their suffix.
I'm trying to figure out of there is a way to do this via SQL. I've been
trying something like
SELECT hostname, COUNT(hostname) AS num, descrip FROM accesslog,
countrycodes WHERE RIGHT(hostname, 5) LIKE countrycodes.code GROUP BY
hostname ORDER BY num DESC;
but that doesn't work (comes up with an empty set). At this point I'm sort
of stuck.
Thanks for any help you can offer me!
/s/ John
-- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: php-db-unsubscribe <email protected> For additional commands, e-mail: php-db-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>
- Next message: Michael Zornek: "[PHP-DB] Search engins"
- Previous message: Leonard Tambunan: "Re: [PHP-DB] 'date' data-type"
- Next in thread: Bob Hall: "[PHP-DB] Re: mysql_query question"
- Reply: Bob Hall: "[PHP-DB] Re: mysql_query question"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

