私は3つのmysqlデータベーステーブルを持っています
1) websites
+-----+--------------------+
| id |website |
+-----+--------------------+
| 1 | http://abcd.com |
| 2 | http://xyz.com |
| 3 | http://pqrs.com |
+-----+--------------------+
2) pages
+-----+---------------------------------------+
| id |page |
+-----+---------------------------------------+
| 1 | http://abcd.com/index.php |
| 2 | http://abcd.com/contact.php |
| 3 | http://xyz.com /index.php |
| 4 | http://pqrs.com /index.php |
+-----+---------------------------------------+
3) statistics
+-----+-------------------+
| id |page_id | type |
+-----+-------------------+
| 1 | 1 | AOL |
| 2 | 1 | YAHOO |
| 3 | 2 | AOL |
| 4 | 3 | YAHOO |
| 5 | 3 | YAHOO |
| 6 | 4 | YAHOO |
+-----+-------------------+
OUTPUTを次のようにします:
+-------------------+--------------------+
|website | count_hit_by_AOL |
+-------------------+--------------------+
|http://abcd.com | 2 |
|http://xyz.com | 0 |
|http://pqrs.com | 0 |
+-------------------+--------------------+
この出力を取得するために、次のmysqlクエリを使用しています--
SELECT
COUNT(statistics.id) as count_stats,
websites.website
FROM websites,
pages,
statistics
WHERE pages.page LIKE CONCAT(websites.website,'%')
AND pages.id = statistics.page_id
and statistics.type LIKE 'AOL%'
GROUP BY websites.website
ORDER BY count_stats DESC
そして、私は次のように出力を得ています
+-------------------+--------------------+
|website | count_hit_by_AOL |
+-------------------+--------------------+
|http://abcd.com | 2 |
+-------------------+--------------------+
私はMYSQLが初めてなので、何か間違っていることがあれば助けてください。