Cris987 Posted November 15, 2007 Share Posted November 15, 2007 Hi, I have a table call userTagLogs with 3 columns username, itemid, tagid I would like to select the rows of this table along with the columns 'singleTagCount', which has the count of the rows with the same tagid and item id, and 'totTagCount', which has the count of the rows with the same itemid. Right now, I have SELECT username AS thisusername, tagid AS thistagid, itemid AS thisitemid, ( SELECT COUNT( tagid ) FROM userTagLogs WHERE tagid = thistagid AND itemid = thisitemid GROUP BY itemid ) AS singleTagCount, ( SELECT COUNT( tagid ) FROM userTagLogs WHERE itemid = thisitemid GROUP BY itemid ) AS totTagCount FROM `userTagLogs` It works ( I think), but it seems really ugly and unnecessary. Is there any way to simplify this? Quote Link to comment Share on other sites More sharing options...
fenway Posted November 19, 2007 Share Posted November 19, 2007 Not really... Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.