Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm not sure the best way to word this question so bear with me.

Table A has following columns:

  • id
  • name
  • description

Table B has the following columns:

  • id
  • a_id(foreign key to Table A)
  • ip_address
  • date

Basically Table B contains a row for each time a user views a row from Table A.

My question is how do I sort Table A results, based on the number of matching rows in Table B.

i.e

SELECT * 
  FROM TableA 
ORDER BY (SELECT COUNT(*) 
            FROM TableB 
           where TableB.a_id = TableA.id)

Thank you!

share|improve this question
What is the problem with the query you already have? – Mark Byers May 19 '10 at 21:20
1  
Wow. I wrote that query as Pseudo-code without actually thinking to test it out. Never thought it would actually work but I just tested it and it works like a charm! – KyleT May 19 '10 at 21:24

4 Answers

up vote 3 down vote accepted
    SELECT a.*
         , b.cnt
      FROM TableA a
   LEFT OUTER JOIN (SELECT a_id
                         , COUNT(*) cnt
                      FROM TableB b
                   GROUP BY a_id) b
   ON a.id = b.a_id
     ORDER BY b.cnt
share|improve this answer
1  
Note: This omits rows from the result if they have no rows in TableB. – Mark Byers May 19 '10 at 21:07
1  
@Mark Byers - Fixed. – dcp May 19 '10 at 21:08
Thanks for all the answers everyone. Thanks dcp, this worked like a charm! – KyleT May 19 '10 at 21:20

Something like this could do the trick.

select a.id, a.name, a.description, count(b.id) as count 
   from TableA as a 
   inner join TableB as b on a.id = b.a_id 
   group by a.id, a.name, a.description order by count 
share|improve this answer
1  
Note: This omits rows from the result if they have no rows in TableB. – Mark Byers May 19 '10 at 21:07

Your query already does what you want. You might want to add DESC if you want the rows with the largest number of rows first:

SELECT * FROM TableA
ORDER BY (SELECT COUNT(*) FROM TableB where TableB.a_id = TableA.id) DESC
share|improve this answer
SELECT a.id, a.name, a.description, count(b.id) FROM TableA a
    JOIN TableB b on b.a_id = a.id
GROUP BY a.id, a.name, a.description ORDER BY COUNT(b.id);

You can add an DESC to the ORDER BY, maybe that is what you need:

SELECT a.id, a.name, a.description, count(b.id) FROM TableA a
    JOIN TableB b on b.a_id = a.id
GROUP BY a.id, a.name, a.description ORDER BY COUNT(b.id) DESC;
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.