poe Posted October 15, 2006 Share Posted October 15, 2006 i have 2 tableslinks (3 fields)- id - | - name - | - url -1 | msn | www.msn.com2 | google web page | www.google.com3 | cnn news | www.cnn.com4 | yahoo home page | www.yahoo.cometc...clicks (2 fields)- id - | - link_id -1 | 22 | 43 | 44 | 15 | 36 | 37 | 4etc... as someone clicks a link, the link _id is recorded in my clicks table.i now want to show the results by most popular link to least.ie.- rank - | - id - | - count - | - url - | - name -1 | 4 | 73 | www.yahoo.com | yahoo home page2 | 3 | 24 | www.cnn.com | cnn news3 | 2 | 18 | www.google.com | google web page.... etc.... $query = " SELECT link_id, COUNT(link_id) AS id_count FROM clicks GROUP BY link_id ORDER BY id_count DESC ";this will give me ...- rank - | - id - | - count - 1 | 4 | 732 | 3 | 243 | 2 | 18.... etc....but, how do i get my results to include the data from links table (url, name)$query = " SELECT clicks.link_id, COUNT(clicks.link_id) AS id_count, links.url, links.name FROM clicks, links GROUP BY link_id ORDER BY id_count DESC ";if i use this query, my count is way off as if it takes the count multiplied by number of records in the links table Link to comment https://forums.phpfreaks.com/topic/23975-count-multiple-tables/ Share on other sites More sharing options...
poe Posted October 15, 2006 Author Share Posted October 15, 2006 update.i read some other posts and i think i figured it out.$query .= " SELECT links.url, id_link, COUNT(*) AS cnt ";$query .= " FROM clicks "; $query .= " INNER JOIN links ON clicks.id_link = links.id "; $query .= " GROUP BY id_link ";$query .= " ORDER BY cnt ASC ";$query .= " LIMIT 5 "; Link to comment https://forums.phpfreaks.com/topic/23975-count-multiple-tables/#findComment-108937 Share on other sites More sharing options...
Barand Posted October 15, 2006 Share Posted October 15, 2006 Read the forum guidelines. Don't double-post. I see you had this solved about 8 hours ago so I've just been wasting my time giving you an answer to your post in the other forum >:( Link to comment https://forums.phpfreaks.com/topic/23975-count-multiple-tables/#findComment-109007 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.